screenshot

Getting started
TODO: List prerequisites and provide or point to information on how to start using the package.
Usage
LoadMoreView(
onLoadMore: () => load(),
isEmpty: false,
isError: false,
duration: 500,
slivers: [
SliverList(
delegate:
SliverChildBuilderDelegate((BuildContext context, int index) {
return Container(
child: Text(list[index].toString()),
height: 40.0,
alignment: Alignment.center,
);
}, childCount: list.length)),
],
),
Additional information
TODO: Tell users more about the package: where to find more information, how to contribute to the package, how to file issues, what response they can expect from the package authors, and more.