SuperGridView<T> constructor

const SuperGridView<T>({
  1. Key? key,
  2. required SuperScrollController<T> controller,
  3. required SuperItemBuilder<T> itemBuilder,
  4. required SliverGridDelegate gridDelegate,
  5. EdgeInsetsGeometry? padding,
  6. ScrollPhysics? physics,
  7. bool shrinkWrap = false,
  8. bool reverse = false,
  9. VoidCallback? onRefresh,
  10. ScrollController? scrollController,
  11. Widget? newPageProgressIndicator,
  12. Widget? firstPageProgressIndicator,
  13. Widget? firstPageErrorIndicator,
  14. Widget? newPageErrorIndicator,
  15. Widget? noItemsFoundIndicator,
  16. Widget? noMoreItemsIndicator,
})

Implementation

const SuperGridView({
  super.key,
  required this.controller,
  required this.itemBuilder,
  required this.gridDelegate,
  this.padding,
  this.physics,
  this.shrinkWrap = false,
  this.reverse = false,
  this.onRefresh,
  this.scrollController,
  this.newPageProgressIndicator,
  this.firstPageProgressIndicator,
  this.firstPageErrorIndicator,
  this.newPageErrorIndicator,
  this.noItemsFoundIndicator,
  this.noMoreItemsIndicator,
});