flutter_loadmore 2.0.0 copy "flutter_loadmore: ^2.0.0" to clipboard
flutter_loadmore: ^2.0.0 copied to clipboard

outdated

Idiom for Pull-Down-Refresh & Pull-Up-Load-More for ListView

flutter-loadmore #

A widget that supports idiom of "Pull Down to Refresh & Pull Up to Load More" for ListView . Material never have this.

Getting Started #

  Widget createView(BuildContext context) {
    return LoadMore(
      onLoadMore: _handleLoadMore,
      child: ListView.builder(
        itemCount: widget.provider.data.length,
        itemBuilder: (BuildContext context, int index) {
          final item = widget.provider.data[index];
          return ListTile(title: Text(item.name));
        },
      ),
    );
  }

Full example (fetch stock via HTTPS) in example folder.

1
likes
30
points
28
downloads

Publisher

unverified uploader

Weekly Downloads

Idiom for Pull-Down-Refresh & Pull-Up-Load-More for ListView

View/report issues

License

BSD-2-Clause (license)

Dependencies

flutter

More

Packages that depend on flutter_loadmore