LoadMoreView constructor
const
LoadMoreView({
- Key? key,
- required LoadMoreCallback onLoadMore,
- required bool isEmpty,
- required bool isError,
- required List<
Widget> slivers, - Widget? loadView,
- Widget? emptyView,
- Widget? errorView,
- double? height = 30,
- String? loadingText,
- String? errorText,
- String? emptyText,
- bool? disableLoadMoreIfNotFullPage = false,
- int? duration = 0,
Implementation
const LoadMoreView(
{Key? key,
required this.onLoadMore,
required this.isEmpty,
required this.isError,
required this.slivers,
this.loadView,
this.emptyView,
this.errorView,
this.height = 30,
this.loadingText,
this.errorText,
this.emptyText,
this.disableLoadMoreIfNotFullPage = false,
this.duration = 0})
: super(key: key);