auto_list library

Classes

AutoListCubit<T>
A Cubit used to load a paginated list. You may want to use it in conjunction with AutoListView
AutoListErrorState<T>
AutoListLoadingMoreErrorState<T>
AutoListLoadingMoreState<T>
AutoListLoadingState<T>
AutoListReadyState<T>
AutoListView<T>
PaginatedList<T>
PaginatedList is a representation of a portion of a bigger list at a given time. This is used to track a remote list while locally supporting only a small portion of data.
SliverAutoListView<T>

Mixins

AutoListState<T>

Typedefs

DataProvider<T> = Future<PaginatedList<T>> Function({int page})
StreamDataProvider<T> = Stream<PaginatedList<T>> Function({int page})