Is there any way to achieve this UI in flutter, images are calling by an API, Card sizes are fixed. This should be scroll horizontally same as this.
CodePudding user response:
You can do like this:
ListView(
// This next line does the trick.
scrollDirection: Axis.horizontal,
children: <Widget>[ /* your widgets */],
),
or as already pointed out in a comment, use the package flutter_staggered_grid_view
CodePudding user response: