Answers for "non scrollable gridview flutter load all items at once"

5

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 "non scrollable gridview flutter load all items at once"

Browse Popular Code Answers by Language