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.
You can use Flex and Flexible widgets. for example:
Flex
Flexible
Flex( direction: Axis.vertical, children: [ ... other widgets ... Flexible( flex: 1, child: ListView.builder( itemCount: ..., itemBuilder: (context, index) { ... }, ), ), ],
);