Dart and Flutter

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