Column( children: <Widget>[ Expanded( // wrap in Expanded child: ListView(...), ), ], )
Column( children: <Widget>[ SizedBox( height: 400, // fixed height child: ListView(...), ), ], )
Column( children: <Widget>[ ListView( shrinkWrap: true, // use this ), ], )
// ...
ListView(
// Says to the `ListView` that it must wrap its
// height (if it's vertical) and width (if it's horizontal).
shrinkWrap: true,
),
// ...