CustomPaginatedGridView<T> constructor
const
CustomPaginatedGridView<T> ({
- Key? key,
- required Widget itemBuilder(),
- required int? itemCount,
- int? crossAxisCount,
- bool load = false,
- ScrollPhysics? physics,
- String? noDataText,
- double? noDataHeight,
- Color? noDataColor,
- VoidCallback? onMaxScrollExtent,
- bool isLastPage = false,
- bool wantLoadMore = true,
- EdgeInsets? padding,
- Future<
void> onRefresh()?, - Future<
void> onLoadMore()?,
Implementation
const CustomPaginatedGridView({
super.key,
required this.itemBuilder,
required this.itemCount,
this.crossAxisCount,
this.load = false,
this.physics,
this.noDataText,
this.noDataHeight,
this.noDataColor,
this.onMaxScrollExtent,
this.isLastPage = false,
this.wantLoadMore = true,
this.padding,
this.onRefresh,
this.onLoadMore,
});