How to add a ListView to a Column in Flutter?

I’ve got this problem too. My solution is use Expanded widget to expand remain space.

Column(
  children: <Widget>[
    Expanded(
      child: horizontalList,
    )
  ],
);

Leave a Comment