October 2019
Intermediate to advanced
550 pages
8h 6m
English
In Flutter apps, some widgets are widely used for different purposes. This chapter discusses some common widgets.
You want to display a scrollable list of items.
Use ListView widget as the container of items.
Flutter layout widgets like Flex, Row, and Column don’t support scrolling, and these widgets are not designed to be used to display items when scrolling is required. If you want to display a large number of items, you should use ListView widget. You can think ListView as the scrollable counterpart of Flex widget.
Read now
Unlock full access