buildChildLayout method

  1. @override
Widget buildChildLayout(
  1. BuildContext context
)
override

Subclasses should override this method to build the layout model.

Implementation

@override
Widget buildChildLayout(BuildContext context) =>
    PagedSliverGrid<PageKeyType, PagingItem>(
      builderDelegate: builderDelegate,
      gridDelegate: gridDelegate,
      addAutomaticKeepAlives: addAutomaticKeepAlives,
      addRepaintBoundaries: addRepaintBoundaries,
      addSemanticIndexes: addSemanticIndexes,
      showNewPageProgressIndicatorAsGridChild:
          showNewPageProgressIndicatorAsGridChild,
      showNewPageErrorIndicatorAsGridChild:
          showNewPageErrorIndicatorAsGridChild,
      showNoMoreItemsIndicatorAsGridChild:
          showNoMoreItemsIndicatorAsGridChild,
      shrinkWrapFirstPageIndicators: _shrinkWrapFirstPageIndicators,
      pagingBuilderController: pagingDataController,
      statusBuilderDelegate: statusBuilderDelegate,
      layoutProtocol: PagedLayoutProtocol.box,
      persistent: persistent,
    );