Multi-Child Widgets for Responsive Layout
Learn to use multi-child Flutter layout widgets with responsiveness in mind.
It’s very common for application layouts to combine different UI components. Think of lists, grids, and custom widgets displayed in a column
or row
. The Flutter widgets that replicate these layouts must handle multiple children widgets simultaneously. Some of them can be exploited to work well on both small and large screens.
The multi-child widgets we’ll see in this chapter are as follows:
Column
Row
ListView
GridView
Stack
Table
Wrap