Answers for "change scroll direction flutter listview"

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 "change scroll direction flutter listview"

Code answers related to "Dart"

Browse Popular Code Answers by Language