easy-flutter.hashnode.devFlutter. Animations without StatefulWidget We will use the SimpleTickerProvider instead.Originally posted on Medium The problem. The AnimationController class has a vsync constructor parameter, which should be an instance of TickerProvider. Flutter has two [recommended] implementations of TickerProvider: To obtain a TickerProvider, con...Mar 25, 2025·4 min read
easy-flutter.hashnode.devFlutter. Play audio with the progress bar and a bit moreMy new app has pretty long audio files, and I want users to be able to control the playing with a slider that will also show the progress. Originally posted on Medium Something similar to the above Medium control. Also, I want the page to scroll au...Mar 23, 2025·7 min read
easy-flutter.hashnode.devFlutter. The complete typography with a single fontOriginally posted on Medium 1. Font variations Flutter’s TextStyle class has a fontVariations property that takes a List<FontVariation> as an argument. Here is an example: Text( 'Brown fox jumps over the dog', ...Mar 23, 2025·5 min read
easy-flutter.hashnode.devFlutter. How to PIN codeI need a page with a PIN code for one of my apps. The use case is very simple: the user just unlocks the web app with a PIN code which I send him over WhatsApp. The pub.dev has several packages exactly for that with clear winner—pinput. I like thos...Mar 14, 2025·3 min read
easy-flutter.hashnode.devFlutter. Settings screen in seconds with settings_ui packageIntroduction I was reading comments on some FlutterDev thread and somebody posted the link to this package. I checked it out and it is definitely worth adding to my project template. The package allows for creating Settings pages similar to Android/...Mar 12, 2025·4 min read