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.
Actually, when you read docs the ListView should be inside Expanded Widget so it can work.
Widget build(BuildContext context) { return Scaffold( body: Column( children: [ Align( child: PayableWidget(), ), Expanded( child: _myListView(context), ) ], ));
}