Answers for "flutter listview force scroll down"

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 "flutter listview force scroll down"

Code answers related to "Dart"

Browse Popular Code Answers by Language