SuperScroll constructor
const
SuperScroll({
- required Widget child,
- required SuperScrollController controller,
- double scrollOffset = 100.0,
- Widget? newPageProgressIndicator,
- Widget? firstPageProgressIndicator,
- Widget? firstPageErrorIndicator,
- Widget? newPageErrorIndicator,
- Widget? noItemsFoundIndicator,
- Widget? noMoreItemsIndicator,
- ScrollController? scrollController,
- Key? key,
Implementation
const SuperScroll({
required this.child,
required this.controller,
this.scrollOffset = 100.0,
this.showFooter = true,
this.newPageProgressIndicator,
this.firstPageProgressIndicator,
this.firstPageErrorIndicator,
this.newPageErrorIndicator,
this.noItemsFoundIndicator,
this.noMoreItemsIndicator,
this.scrollController,
super.key,
});