PaginationScreen<T> constructor
const
PaginationScreen<T> ({
- Key? key,
- required APagination pagination,
- required Future<
List< future(),T> > - required Widget pageBuilder(
- List<
T>
- List<
- required Widget emptyWidget,
- required Widget errorWidget(
- dynamic,
- StackTrace,
- FutureSignal<
List< T> >
- required Widget loadingWidget,
- RefreshController? refreshController,
- TextEditingController? searchController,
- double? cacheExtent,
- DragStartBehavior? dragStartBehavior,
- bool enablePullUp = true,
- Widget? header,
- OnTwoLevel? onTwoLevel,
- ScrollPhysics? physics,
- bool? primary,
- bool? reverse,
- ScrollController? scrollController,
- Axis? scrollDirection,
- int? semanticChildCount,
Implementation
const PaginationScreen({
super.key,
required this.pagination,
required this.future,
required this.pageBuilder,
required this.emptyWidget,
required this.errorWidget,
required this.loadingWidget,
this.refreshController,
this.searchController,
this.cacheExtent,
this.dragStartBehavior,
this.enablePullUp = true,
this.footer,
this.header,
this.onTwoLevel,
this.physics,
this.primary,
this.reverse,
this.scrollController,
this.scrollDirection,
this.semanticChildCount,
});