Dart and Flutter

Sponsored links
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...
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 ...
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...
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...
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...
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...
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...
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...
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...
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...
Sponsored links