buildChildLayout method
Subclasses should override this method to build the layout model.
Implementation
@override
Widget buildChildLayout(BuildContext context) =>
PagedSliverAlignedGrid<PageKeyType, ItemType>(
builderDelegate: builderDelegate,
state: state,
fetchNextPage: fetchNextPage,
gridDelegateBuilder: gridDelegateBuilder,
mainAxisSpacing: mainAxisSpacing,
crossAxisSpacing: crossAxisSpacing,
addAutomaticKeepAlives: addAutomaticKeepAlives,
addRepaintBoundaries: addRepaintBoundaries,
addSemanticIndexes: addSemanticIndexes,
showNewPageProgressIndicatorAsGridChild:
showNewPageProgressIndicatorAsGridChild,
showNewPageErrorIndicatorAsGridChild:
showNewPageErrorIndicatorAsGridChild,
showNoMoreItemsIndicatorAsGridChild:
showNoMoreItemsIndicatorAsGridChild,
shrinkWrapFirstPageIndicators: _shrinkWrapFirstPageIndicators,
);