PaginatedListView<T> constructor

const PaginatedListView<T>({
  1. Key? key,
  2. required ItemBuilder<T> itemBuilder,
  3. required PageFuture<T> pageFuture,
  4. int pageSize = 10,
  5. EdgeInsetsGeometry? padding,
  6. NoItemsFoundBuilder? noItemsFoundBuilder,
  7. Widget? noItemsFoundWidget,
  8. PagewiseLoadController<T>? pageLoadController,
  9. bool mutable = false,
  10. bool showRefreshIndicator = false,
  11. Axis scrollDirection = Axis.vertical,
  12. bool shrinkWrap = false,
  13. ScrollPhysics? physics,
})

Implementation

const PaginatedListView({
  super.key,
  required this.itemBuilder,
  required this.pageFuture,
  this.pageSize = 10,
  this.padding,
  this.noItemsFoundBuilder,
  this.noItemsFoundWidget,
  this.pageLoadController,
  this.mutable = false,
  this.showRefreshIndicator = false,
  this.scrollDirection = Axis.vertical,
  this.shrinkWrap = false,
  this.physics,
});