Dart and Flutter Flutter Google Login with Firebase I tried Google login from a Flutter application because Android users have Google account and it is easier for a user to... 2021.12.15 Dart and Flutter
Dart and Flutter Flutter Swipe list item to delete It's common to let a user swipe a list item for more options in smartphone applications. For example, we can archive an ... 2021.12.10 Dart and Flutter
Dart and Flutter Flutter Loading next data when reaching the bottom of ListView Many applications have a lazy data loading feature. For example, it loads the first 20 data and if a user scrolls down t... 2021.12.08 Dart and Flutter
Dart and Flutter Dart Handling the length after decimal point How to show minimum digit after decimal point If a value data type is double and printed, it includes a decimal point li... 2021.12.06 Dart and Flutter
Dart and Flutter Flutter Navigator pushReplacement and popUntil Page transition is definitely required for all applications. Flutter offers multiple ways to do it, so I tried to use th... 2021.11.29 Dart and Flutter
Dart and Flutter Flutter How to add Drawer implementation Many apps have a drawer that appears from the left side of the screen. Let's learn how to implement it in Flutter. Minim... 2021.11.24 Dart and Flutter
Dart and Flutter Dart DateTime handling DateTime is very common in programming languages. We should know the basics to handle the date-time and show it correctl... 2021.11.22 Dart and Flutter
Dart and Flutter Flutter Dropdown Button hint text and initial value Dropdown is one of the common ways to let a user select an option from a list. Let's learn how to implement it in Flutte... 2021.11.05 Dart and Flutter
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