Answers for "disable the animation in listview flutter"

3

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 "disable the animation in listview flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language