SuperListView<T>.builder constructor

const SuperListView<T>.builder({
  1. Key? key,
  2. required SuperScrollController<T> controller,
  3. required SuperItemBuilder<T> itemBuilder,
  4. EdgeInsetsGeometry? padding,
  5. ScrollPhysics? physics,
  6. bool shrinkWrap = false,
  7. bool reverse = false,
  8. VoidCallback? onRefresh,
  9. ScrollController? scrollController,
  10. Widget? newPageProgressIndicator,
  11. Widget? firstPageProgressIndicator,
  12. Widget? firstPageErrorIndicator,
  13. Widget? newPageErrorIndicator,
  14. Widget? noItemsFoundIndicator,
  15. Widget? noMoreItemsIndicator,
})

Implementation

const SuperListView.builder({
  super.key,
  required this.controller,
  required this.itemBuilder,
  this.padding,
  this.physics,
  this.shrinkWrap = false,
  this.reverse = false,
  this.onRefresh,
  this.scrollController,
  this.newPageProgressIndicator,
  this.firstPageProgressIndicator,
  this.firstPageErrorIndicator,
  this.newPageErrorIndicator,
  this.noItemsFoundIndicator,
  this.noMoreItemsIndicator,
}) : separatorBuilder = null;