Answers for "how to nuse GridView in SingleChildScrollView in flutter?"

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

Code answers related to "how to nuse GridView in SingleChildScrollView in flutter?"

Browse Popular Code Answers by Language