flutter listview into column code example
Example: listview inside column flutter
new Column(
children: <Widget>[
new Expanded(
child: horizontalList,
)
],
);
new Column(
children: <Widget>[
new Expanded(
child: horizontalList,
)
],
);