I have a Row
of CircularProfileAvatar
and I want to make them horizontally scrollable, but I can't figure out how with ListView
.
Here is my code:
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
CircularProfileAvatar(
...
),
CircularProfileAvatar(
...
),
CircularProfileAvatar(
...
),
CircularProfileAvatar(
...
),
]
),
I want to make everything in that Row
horizontally Scrollable. Is there a way to do it?
预先感谢您的回答!