Answers for "listview scroll direction flutter"

0

listview scroll direction flutter

ListView(
  // This next line does the trick.
  scrollDirection: Axis.horizontal,
  children: <Widget>[
    ....
  ],
)
Posted by: Guest on June-17-2021

Code answers related to "listview scroll direction flutter"

Browse Popular Code Answers by Language