Answers for "flutter custom scroll view disable scroll animation when there is nothing to scroll"

3

disable scrollview flutter

physics = NeverScrollableScrollPhysics()
Posted by: Guest on May-14-2020
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 custom scroll view disable scroll animation when there is nothing to scroll"

Browse Popular Code Answers by Language