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.
Use Expanded to fit the listview in the column
Column( children: [ Text('Data'), Expanded( child: ListView() ) ], )