Answers for "flutter vertical scroll gridview"

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
0

flutter gridview vertical viewport was given unbounded height

ListView.builder(
    scrollDirection: Axis.vertical,
    shrinkWrap: true,
Posted by: Guest on August-22-2021

Code answers related to "flutter vertical scroll gridview"

Browse Popular Code Answers by Language