Dart and Flutter Flutter Alert/Simple Dialog examples When we want to tell a message to a user, showing the message on a dialog is one of the ways. Flutter offers the followi... 2021.11.03 Dart and Flutter
Dart and Flutter Dart/Flutter Constructors tutorial with examples Constructor is one of the basics to implement dart class. There are some features that I didn't know before writing this... 2021.11.01 Dart and Flutter
Dart and Flutter Flutter Riverpod Handling Future and dispose in StateNotifier It took me a while to find out how to implement a Provider that uses FutureProvider in it and disposes of a variable cre... 2021.10.20 Dart and Flutter
Dart and Flutter Flutter Dynamic TextField creation with Riverpod I have posted the following article before. The code uses neither Riverpod nor Provider. It is implemented by using Stat... 2021.10.18 Dart and Flutter
Dart and Flutter Flutter 4 ways to hide persistentFooterButtons Scaffold Widget has persistentFooterButtons property. How can we implement it if we want to show and hide it depending o... 2021.10.15 Dart and Flutter
Dart and Flutter Flutter Riverpod and ListView I didn't know how to use a Riverpod provider for ListView, so I looked into it and implemented it. If you are looking fo... 2021.10.07 Dart and Flutter
Dart and Flutter Waiting for another flutter command to release the startup lock… I opened VSCode and tried to start a mobile emulator but the device list didn't appear on the command palette. I ran Run... 2021.10.05 Dart and Flutter
Dart and Flutter Flutter Scrolling while dragging an item Drag and drop are often used when we want to move an item. If the list is long it's necessary to be scrollable while dra... 2021.09.29 Dart and Flutter
Dart and Flutter Flutter How to write unit test for thrown exception I didn't know how to write unit test for a function that throws an exception. Therefore. I looked into the solution and ... 2021.09.27 Dart and Flutter
Dart and Flutter Flutter Provider example ChangeNotifierProvider and Consumer I have used only setState in order to update the view but I faced a problem while I developed my own package grouped exp... 2021.09.20 Dart and Flutter