PaginatedScrollView<T> constructor

const PaginatedScrollView<T>({
  1. required PaginationState<T> state,
  2. required Widget itemBuilder(
    1. BuildContext,
    2. T
    ),
  3. void onLoadMore()?,
  4. Widget? topWidget,
  5. Widget? bottomWidget,
  6. Key? key,
})

Creates a new PaginatedScrollView.

Implementation

const PaginatedScrollView({
  required this.state,
  required this.itemBuilder,
  this.onLoadMore,
  this.topWidget,
  this.bottomWidget,
  super.key,
});