SuperScroll constructor

const SuperScroll({
  1. required Widget child,
  2. required SuperScrollController controller,
  3. double scrollOffset = 100.0,
  4. bool showFooter = true,
  5. Widget? newPageProgressIndicator,
  6. Widget? firstPageProgressIndicator,
  7. Widget? firstPageErrorIndicator,
  8. Widget? newPageErrorIndicator,
  9. Widget? noItemsFoundIndicator,
  10. Widget? noMoreItemsIndicator,
  11. ScrollController? scrollController,
  12. 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,
});