Answers for "flutter disable scroll animated list"

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 "flutter disable scroll animated list"

Code answers related to "Dart"

Browse Popular Code Answers by Language