Introduction
In this article we are investigate about Flutter ListView Buildere Material Design Flutter App,you can learn about design how easy it is to make ListViews in Flutter.
Prerequisites
Setting up Flutter
First Steps with Flutter: Exploring widgets
First Steps with Flutter: Building layouts
First Steps with Flutter: Responding to user input
Project Setup
Start a new flutter project using Android studio or Visual studio code.
In android studio you can start new flutter project using this menu
In visual Studio code You can star a new project using "Command plate"
click on "view" tab and select "Command plate". and type " Flutter"
and select "Flutter_new project"
Enter your project name.."flutter_listview"
Open main.dart and replace the code with the following code
And next Click on your terminal tab and Select "New terminal"
type this - 'flutter run'
The children of the ListView were ListTiles. A ListTile is a special widget that is preconfigured to handle the most common layouts that you would want in a ListView.
Top comments (0)