# 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