Dart

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 ...
Dart

[Dart💠]Dart 3 Tips (always updating)

Switch function You can write switch function like the following code. Before Dart 3.0 final String os; switch (device) ...