Answers for "listview no scroll flutter"

3

make listview not scrollable flutter

ListView(
   physics: NeverScrollableScrollPhysics(), // <-- this will disable scroll
   shrinkWrap: true,
   children: [],
 ),
Posted by: Guest on September-17-2020
0

flutter listview disable scroll

physics: const NeverScrollableScrollPhysics()
Posted by: Guest on September-12-2020
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 no scroll flutter"

Browse Popular Code Answers by Language