Flutter Localization: l10n Setup and Translation Workflow
I recently worked on adding localization to a Flutter app, so I wanted to write this down as a practical memo…
Read articleArticle archive
Continue browsing the Code Hub Journal archive.
Flutter
I recently worked on adding localization to a Flutter app, so I wanted to write this down as a practical memo…
Read article
Flutter
Flutter performance problems usually show up as “jank”: dropped frames, stutters during scrolling, slow screen transitions, and UI that feels heavy.…
Read article
Flutter
Flutter logging is easy to start (just call debugPrint()) and surprisingly hard to scale. In production, you need log levels, consistent…
Read article
Flutter
Flutter flavors let you run the same app in multiple environments—like dev, staging, and production—without risky manual edits. Done well, flavors…
Read article
Flutter
SQLite in Flutter is the go-to relational database for apps that need structured queries, constraints, and transactions. This guide explains when…
Read article
Flutter
Use flutter_secure_storage 11.0.0 safely across Flutter platforms, with correct dependency syntax, migration guidance, and token-handling practices.
Read article
Flutter
shared_preferences in Flutter is the simplest way to store small pieces of non-sensitive data—things like theme mode, onboarding flags, and the…
Read article
Flutter
Hive in Flutter is a lightweight, fast key–value database that runs purely in Dart. It’s ideal for local data such as…
Read article
Flutter
Hive, shared_preferences, and flutter_secure_storage cover three different needs in Flutter: fast key–value storage, simple user preferences, and secure secret storage. This…
Read article
Flutter
Flutter error handling is about more than catching exceptions. It’s about turning failures into clear, calm user experiences while still giving…
Read article