Horizontal viewport was given unbounded height. I/flutter ( 4792): Viewports expand in the cross axis to fill their container and constrain their children to match code example
Example 1: Vertical viewport was given unbounded height.
ListView.builder(
scrollDirection: Axis.vertical,
shrinkWrap: true,
...
Example 2: Vertical viewport was given unbounded height.
Column(
children: <Widget>[
Expanded( // wrap in Expanded
child: ListView(...),
),
],
)