Answers for "flutter gridview without scroll"

2

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
2

disable scroll in listview flutter

ListView.builder(
physics: ClampingScrollPhysics(), // <----
// ...
Posted by: Guest on October-22-2020
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 gridview without scroll"

Browse Popular Code Answers by Language