Flutter

Android

[Android/Flutter] How to build your `aab` file as a production build?

You just write down on the console flutter build appbundle --dart-define=FLAVOR=production --release --flavor production...
Dart

[Flutter/Dart] How to change icon of grabbing and ungrabbing.

Preparation You have to use StatefulWidget or HookWidget You can implement it without any event conflicts by using Liste...
Dart

You want to controll opacity dynamicaly but you don’t want to remove the widget that has opacity = 0

Problem You want to implement some animation in flutter. And you are using flutter_hooks as state management. Once the o...
Dart

[Flutter/Dart]My project doesn’t have `analysis_options.yaml` in the root directory

A question I could not find analysis_options.yaml in my project. And I didn't know how Flutter/Dart analyze errors and w...
Dart

[Flutter/Dart💠]I read a valuable article about `null safety`

I feel hazy about 'null safety' When I review the code written by my collegue by using Dart(Flutter), I came across the ...