Flutter

Flutter

Flutter 3.47 Upgrade Guide: UI Packages, Impeller, and iOS 15

A practical Flutter 3.47 migration plan covering standalone Material and Cupertino packages, new Apple baselines, desktop Impeller, Widget Previews, and release validation.

Read article
Flutter

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 for myself. Flutter…

Read article
Flutter

Flutter Performance Guide: Fixing Jank and Keeping 60fps

Flutter performance problems usually show up as “jank”: dropped frames, stutters during scrolling, slow screen transitions, and UI that feels heavy. The good news…

Read article
Flutter

Flutter Logging in Production: Moving Beyond debugPrint

Flutter logging is easy to start (just call ) and surprisingly hard to scale. In production, you need log levels, consistent formatting, privacy-safe data…

Read article
Flutter

Flutter Flavors in Practice: dev/stg/prod with dart-define and CI

Flutter flavors let you run the same app in multiple environments—like dev, staging, and production—without risky manual edits. Done well, flavors make it trivial…

Read article
Flutter

SQLite in Flutter: When to Use It and How to Do It Right

SQLite in Flutter is the go-to relational database for apps that need structured queries, constraints, and transactions. This guide explains when SQLite is a…

Read article
Flutter

flutter_secure_storage in Flutter: Keeping Secrets Safe

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: Simple Settings Done Right

shared_preferences in Flutter is the simplest way to store small pieces of non-sensitive data—things like theme mode, onboarding flags, and the last selected tab.…

Read article
Flutter

Hive in Flutter: Local Database and Offline Caching

Hive in Flutter is a lightweight, fast key–value database that runs purely in Dart. It’s ideal for local data such as offline caches, small…

Read article
Flutter

Choosing Hive, shared_preferences, or flutter_secure_storage in 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 article compares them,…

Read article