0
Q:

make listview not scrollable flutter

 ListView(
   physics: NeverScrollableScrollPhysics(), // <-- this will disable scroll
   shrinkWrap: true,
   children: [],
 ),
1
ListView.builder(
physics: ClampingScrollPhysics(), // <----
// ...
1
physics = NeverScrollableScrollPhysics()
1

New to Communities?

Join the community