loadmore_data library

load-more_data is a flutter package that can handel infinity scroll pagination

Classes

LoadMoreListData<T>
LoadMoreListData is the main, and and only widget you need to archive pagination

Typedefs

ItemBuilder<T> = Widget Function(BuildContext context, T itemData)
type def for builder argument of LoadMoreListData
OnInit<T> = FutureOr<Iterable<T>> Function()
type def for onInit argument of LoadMoreListData
OnLoad<T> = FutureOr<Iterable<T>?> Function(int index)
type def for OnLoad argument of LoadMoreListData