
This means that most of the time there is no need to define a custom layout. The Flutter team designed the ListTile widget to handle the normal content that you would want in a list. Flutter offers a lot of options to make them more beautiful. We’ve covered the main ListView types above, but they were pretty plain. Open main.dart and replace the code with the following: import 'package:flutter/material.dart' void main ( ) = > runApp ( MyApp ( ) ) class MyApp extends StatelessWidget

I’m using Android Studio with Flutter 1.0 for this article, but you should be fine if you are using another IDE.

Bookmark it and come back here to copy-and-paste the code snippets as starters in your own projects.įirst we will look at the main types of ListViews that are available. In this article we will use simple examples to look at all of the common use cases for making them. If you have done any Android or iOS development before, you are going to love how easy it is to make ListViews in Flutter. You will need Dart and Flutter set up on your system.
