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 have SingleChildScrollView as a parent, and one Column Widget and then List View Widget as last child.
SingleChildScrollView
Column
Adding these properties in List View Worked for me.
physics: NeverScrollableScrollPhysics(), shrinkWrap: true, scrollDirection: Axis.vertical,