If you need to select between a small list of values but have limited vertical space, you can use a ListWheelScrollView. https://codewithandrea.com/tips/list-wheel-scroll-view/
To support the latest wide gamut color spaces, Flutter 3.27 has deprecated some properties and methods in the Color class. https://codewithandrea.com/tips/color-deprecations-flutter-3.27/
If you want to render fixed width (monospaced) digits, set FontFeature.tabularFigures() inside your TextStyle. https://codewithandrea.com/tips/text-style-tabular-figures/
Since Dart 3.6 (Flutter 3.27), you can use _ as a digits separator. This works with integers and floats, as well as custom formats (hex, scientific). https://codewithandrea.com/tips/digits-separators-dart-3.6/
Since Flutter 3.27, you can pass a spacing argument to your Row and Column widgets (rather than using SizedBox). https://codewithandrea.com/tips/spacing-row-column/
You can use the Banner widget to place a small diagonal banner over a child widget. For more custom styling, build your own using a custom painter. https://codewithandrea.com/tips/banner-widget/
You can use Cursor edit mode to sweep through your code and make changes. Works best with imperative code. https://codewithandrea.com/tips/cursor-edit-mode/
A few suggestions for solving the "version solving failed" error when updating your Flutter dependencies. https://codewithandrea.com/tips/fixing-version-solving-failed-errors/
A step-by-step guide on how to publish your Flutter app, including metadata, compliance, privacy manifests, Xcode settings, and building your IPA file. https://codewithandrea.com/articles/how-to-release-flutter-ios-app-store/
Starting November 12, 2024, apps that don’t include a Privacy Manifest can’t be submitted for review in App Store Connect. https://codewithandrea.com/tips/xcode-privact-manifest/