custom_loadmore library
Classes
-
CustomLoadMore<
T> -
CustomLoadMoreController<
T> - CustomLoadMoreEvent
- CustomLoadMoreEventErrorOccurred
- CustomLoadMoreEventPullToRefresh
- CustomLoadMoreEventRetryWhenInitLoadingFailed
- CustomLoadMoreEventRetryWhenLoadMoreFailed
- CustomLoadMoreEventScrollToLoadMore
- CustomLoadMoreInitLoadingFailedState
- CustomLoadMoreInitLoadingState
- CustomLoadMoreInitLoadingSuccessWithNoDataState
- CustomLoadMoreInitState
- CustomLoadMoreLoadingMoreState
- CustomLoadMoreLoadMoreFailedState
- CustomLoadMoreNoMoreDataState
- CustomLoadMoreStableState
- CustomLoadMoreState
-
ICustomLoadMoreDataProvider<
T> - An abstract mixin that interface that provide the load more function in order to custom load more widget working with.
-
InfiniteLoadMoreList<
T>
Typedefs
-
FutureCallback<
T> = Future< List< Function(int pageIndex, int pageSize)T> ?> -
The callback function of CustomLoadMore widget.
It will be called when CustomLoadMore widget is initialized or load more.
The return value of this function is a Future object.
If the Future object complete with
truevalue mean the that callback is successes. null value orfalsevalue mean the callback is failed. -
LoadmoreWidgetBuilder<
T> = Widget Function(BuildContext context, CustomLoadMoreState state, List< T> ? items, CustomLoadMoreController controller) - The builder function for content that visible to user.