How Does Provider State Management Package Work?The Provider package is a Flutter package that provides an easy way to manage the app state and make it available to other widgets in the…Jan 5, 2023Jan 5, 2023
Infinite Scroll List in the FutterTo implement an infinite scroll list in Flutter, you can use a ListView.builder widget and set the itemBuilder property to a callback that…Jan 5, 2023Jan 5, 2023
Stateful and Stateless Widgets in FlutterIn Flutter, a “stateful” widget is a widget that has a mutable state, which means that its state can change during the lifetime of the…Jan 3, 2023Jan 3, 2023
Const vs Final in Flutter / DartIn Flutter, final and const are both used to declare variables that cannot be reassigned.Jan 3, 2023Jan 3, 2023
Deep Linking / Dynamic Links in Flutter using FirebaseDeep linking allows you to link to specific content or pages within your app from external sources, such as a web page or another app.Dec 30, 2022Dec 30, 2022
Multiple Selection in listview.builder FlutterTo create a multiple-selection list using ListView.builder in Flutter, I’m using a CheckboxListTile widget for each item in the list.Dec 30, 2022Dec 30, 2022
Single-Selection in Listview.builder FlutterTo create a single selection list using ListView.builder in Flutter, I'm using a RadioListTile widget for each item in the list.Dec 30, 2022Dec 30, 2022
Animated List in FlutterTo create an animated list in Flutter, you can use the AnimatedList widget. This widget is a scrollable list that animates items when they…Dec 30, 2022Dec 30, 2022
How to change the status bar Color in Flutter?To change the text color of the status bar in a Flutter app on iOS, you can use the SystemChrome class and set the statusBarColor and…Dec 30, 2022Dec 30, 2022
Build Beautiful and Fast Mobile Apps with FlutterIntroduction — What is Flutter?Mar 11, 2022Mar 11, 2022