When we want to put a little more effort in our user experience when the user scrolls in our app, like for example showing and hiding content from the app bar when scrolling, we will have to use Slivers. Though they might Read More
In the Android world, some companies divide their apps into multiple modules, either by feature or by layer (following the Clean Architecture approach).What if we tried to do the same in Flutter? What would be the benefits and the implications of dividing Read More
When coming to a new language like Dart, we might know how to use the language for the most common syntax, such as for loops, if statements, declaring classes and methods and arithmetic operations. But what about closures? Optional arguments? Collections with Read More
If you come from an Android background, you might be used to Dagger, the dependency injection framework for Android Development. Though Flutter does not have a Dagger implementation, Google created inject, which they name a “Compile-time dependency injection for Dart and Flutter, Read More
We might not want to make a Twitter clone, but we may want to show our users a fancy tweet or let them share all the tweets they want. And since it can be hard to create a layout that can adapt Read More
Last week we featured an article about the command line, but there are still many secrets to be discovered. Did you know that there are 52 sample applications “hidden” in the CLI that we can easily create with 1 line in the Read More
In Flutter, navigating between screens can be achieved by using the Navigator class, accessed either by using the widget tree’s BuildContext or by using a key. With it we can add (push) or remove (pop) screens from our app, add transition animations Read More
Game development is hard. Even harder if it involves doing a procedurally generated story or “Skyrim in text form” as Filip put into words. So how can we do it in Dart? Filip Hráček started a weekly 2 hour stream in which Read More
We create, debug and publish an app and think that’s just it. But is it? As an app developer, we not only have to polish our apps and have great UI and user experience, but also we have to take into account Read More
Some times we want our users to rate thing in our app: be it an item, the user’s overall appreciation for the app or his guess for the code-quality of our app (ok, maybe not the last one). Sarbagya Dhaubanjar created a Read More
Recent Comments