Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # Sliver Grid {{tag>flutter sliver grid}} ```dart new SliverGrid( gridDelegate: SliverGridDelegateWithFixedCrossAxisCount( crossAxisCount: orientation == Orientation.portrait ? 2 : 3, childAspectRatio: 0.86, ), delegate: SliverChildBuilderDelegate( (context, index) { return ItemList(context, items: itemList[index]); }, childCount: itemList.length, ), ), ``` ## Link - https://stackoverflow.com/questions/56432721/is-it-possible-to-wrap-a-slivergridis-a-children-of-customscrollview-inside-th open/sliver-grid.txt Last modified: 2024/10/05 06:15by 127.0.0.1