Flutter column in listview not working Code Example
flutter column in listview not working
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: [
Expanded(
child: horizontalList,
)
],
);