#flutter
Read more stories on Hashnode
Articles with this tag
Flutter has built-in support to light and dark themes. The MaterialApp widget has a property called themeMode. If we specify the darkTheme and theme...
On a previous post, I demonstrated how to run checks during a git commit with Lefthook. That workflow is good, however, it's very easy to bypass the...
Our widget tests should give us confidence about how they respond to user interactions - its behavior. Using the CustomButton widget from a previous...
With Flutter, it's possible to display a CupertinoButton on iOS and a RaisedButton on Android, giving an even more native looking to our apps. Display...
I'm using Flutter for mobile development and, coming from the JavaScript world, I'm used to having Git hooks running checks before a commit or a push...