Answers for "flutter disable scroll on widget"

3

make listview not scrollable flutter

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

disable scrollview flutter

physics = NeverScrollableScrollPhysics()
Posted by: Guest on May-14-2020

Code answers related to "flutter disable scroll on widget"

Browse Popular Code Answers by Language