LoadableListView<T extends StoreListItem> constructor

const LoadableListView<T extends StoreListItem>({
  1. required LoadableListViewModel<T> viewModel,
  2. ScrollPhysics scrollPhysics = const AlwaysScrollableScrollPhysics(),
  3. ScrollListener? onChangeContentOffset,
  4. double? cacheExtent,
  5. bool shrinkWrap = false,
  6. Axis scrollDirection = Axis.vertical,
  7. bool reverse = false,
  8. Widget progressIndicator = const CircularProgressIndicator(),
  9. ScrollController? scrollController,
  10. Key? key,
})

Implementation

const LoadableListView({
  required this.viewModel,
  this.scrollPhysics = const AlwaysScrollableScrollPhysics(),
  this.onChangeContentOffset,
  this.cacheExtent,
  this.shrinkWrap = false,
  this.scrollDirection = Axis.vertical,
  this.reverse = false,
  this.progressIndicator = const CircularProgressIndicator(),
  this.scrollController,
  super.key,
});