I\'m trying to construct a simple login page for my Flutter app. I\'ve successfully built the TextFields and log in/Sign in buttons. I want to add a horizontal ListView.
I've got this problem too. My solution is use Expanded widget to expand remain space.
Expanded
new Column( children: [ new Expanded( child: horizontalList, ) ], );