ListView Widget: Listing Entries
In this lesson, we discuss displaying movie titles in a list in detail.
We'll cover the following...
In the last lesson, a big blob of API responses was displayed on the main screen. In this lesson, you’ll see how to display each movie entry in its own row using the ListView
Flutter widget.
ListView widget
ListView widget is used for laying out its children in a scrolling manner.
One way to build a ListView
widget is to use ListView.builder
. It has two main properties: ...