Answers for "flutter listview disable scroll effect"

1

flutter listview disable scroll

physics: const NeverScrollableScrollPhysics()
Posted by: Guest on September-12-2020
2

flutter disable scroll animated list

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

Code answers related to "flutter listview disable scroll effect"

Browse Popular Code Answers by Language