FLUTTER
-
Powershell script to build and install an Android Flutter app
When developing an app you generally go through many cycles of testing your app on a physical device. That’s very easy with flutter. You just say one of these: possibly preceded by: to clear any cached build artifacts. Then you simply run: There’s usually no need to script this. But sometimes, you just want to…
-
Add Firebase Crashlytics to Flutter
(This article is a work in progress. Keeping it here for now as reference) This was done using Flutter version 3.27. But will probably work fine with little adjustments in later versions. I’m focusing on Android, but many steps apply for iOS too. I will update the article in the future to cover more platforms.…
-
Time String Helper
Formatting Time in Flutter/Dart: A Simple Helper Class When working on Flutter projects, you might need to format durations into readable time strings. This could be for timers, media players, or activity trackers. To make this task a bit easier, here’s a lightweight helper class, TimeStringHelper, that handles common formatting needs. What TimeStringHelper Does Converts…