SuperGridView<T> constructor
const
SuperGridView<T> ({
- Key? key,
- required SuperScrollController<
T> controller, - required SuperItemBuilder<
T> itemBuilder, - required SliverGridDelegate gridDelegate,
- EdgeInsetsGeometry? padding,
- ScrollPhysics? physics,
- bool shrinkWrap = false,
- bool reverse = false,
- VoidCallback? onRefresh,
- ScrollController? scrollController,
- Widget? newPageProgressIndicator,
- Widget? firstPageProgressIndicator,
- Widget? firstPageErrorIndicator,
- Widget? newPageErrorIndicator,
- Widget? noItemsFoundIndicator,
- 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,
});