muhammad369 / ResponsiveGrid_Flutter

Responsive Grid Layout for Flutter
MIT License
88 stars 27 forks source link

Add shrinkWrap to ListView.builder #12

Closed gehad-ahmed-mohamed closed 3 years ago

adeyinkabadmus commented 3 years ago

If nesting scrollables is the problem, you can pass "scroll: false" to the ResponsiveGridList constructor which defaults to true. It builds with rows and columns instead of a ListView.builder if scroll is set to false.

ResponsiveGridList(
     scroll: false,
     ...
)