Answers for "flutter non scrollable grid"

3

gridview not scrolling flutter

Add this line inside your GridView to allow scrolling
physics: ScrollPhysics(),

Add this line inside your GridView to disable scrolling

physics: NeverScrollableScrollPhysics(),
Posted by: Guest on September-09-2021
0

disable scroll gridview flutter

Add this line inside your GridView to disable scrolling

 physics: NeverScrollableScrollPhysics(),
Posted by: Guest on June-10-2021

Code answers related to "flutter non scrollable grid"

Code answers related to "Dart"

Browse Popular Code Answers by Language