BaseCustomGridScrollView<T> constructor
const
BaseCustomGridScrollView<T> ({
- required PagingController<
int, T> pagingController, - required dynamic itemBuilder(
- T,
- int
- required AutoScrollController? controller,
- required VoidCallback onRefresh,
- required RefreshController refreshController,
- EdgeInsetsGeometry? padding,
- double? crossAxisSpacing,
- double? mainAxisSpacing,
- Color? backgroundColor,
- double? childAspectRatio,
- int? crossAxisCount,
- Axis? scrollDirection,
- bool? isPrimary,
- bool? isController = true,
- bool? isLastPage = false,
- String? message,
- Key? key,
Implementation
const BaseCustomGridScrollView({
required this.pagingController,
required this.itemBuilder,
required this.controller,
required this.onRefresh,
required this.refreshController,
this.padding,
this.crossAxisSpacing,
this.mainAxisSpacing,
this.backgroundColor,
this.childAspectRatio,
this.crossAxisCount,
this.scrollDirection,
this.isPrimary,
this.isController = true,
this.isLastPage = false,
this.message,
Key? key,
}) : super(key: key);