Flattern -Spalte in ListView funktioniert nicht
The column and listview has an unbounded height, so use the listview to display horizontally or wrap it in a container with a specified height ;) You go this!
Column(
children: <Widget>[
Expanded(
child: horizontalList,
)
],
);
Steve