In Flutter, when we want to rebuild the UI inside a Stateful widget after updating a variable, we use setState(). setState() re-runs the build method and the widget is rebuilt...
LEARN AT YOUR OWN PACE
with the easy-to-start guides & blogs
BLOGS
The latest and the newest blog posts on to enrich the learning along with Flutter Guides.
In Flutter, when we want to rebuild the UI inside a Stateful widget after updating a variable, we use setState(). setState() re-runs the build method and the widget is rebuilt...
A string is used to hold a sequence of characters – letters, numbers, and special characters. In Dart language, strings are simply a sequence of UTF-16 (16-bit Unicode Transformation Format) code...
In this article, we are going to learn about Streams in dart. For these, we should know what Streams in Dart is. A Stream is a sequence of asynchronous events. In other words,...
In this article, we are going to explore the freezed and working mechanism in the flutter application. With the help of freezed, we can reduce the lines of code. Freezed is...
In this guide, we will learn how to implement TabBar in Flutter. For these, we should know what a TabBar in flutter is. TabBar is used to create the tabs. The...
In this article, we are going to convert the class object to the map in dart by taking a different example which is given below. Converting a Dart Object to...