buildChildLayout method
Subclasses should override this method to build the layout model.
Implementation
@override
Widget buildChildLayout(BuildContext context) {
return PaginationSliverGrid<T>(
builderDelegate: builderDelegate,
pagination: pagination,
gridDelegate: gridDelegate,
addAutomaticKeepAlives: addAutomaticKeepAlives,
addRepaintBoundaries: addRepaintBoundaries,
addSemanticIndexes: addSemanticIndexes,
showNewPageProgressIndicatorAsGridChild:
showNewPageProgressIndicatorAsGridChild,
showNewPageErrorIndicatorAsGridChild:
showNewPageErrorIndicatorAsGridChild,
showNoMoreItemsIndicatorAsGridChild: showNoMoreItemsIndicatorAsGridChild,
shrinkWrapFirstPageIndicators: _shrinkWrapFirstPageIndicators,
);
}