infinite_scroll_plus 0.0.1 copy "infinite_scroll_plus: ^0.0.1" to clipboard
infinite_scroll_plus: ^0.0.1 copied to clipboard

A package to help developer to do add lazy loading or infinite scroll to the listview or use a infinite scrollable listview

infinite_scroll_plus #

A Flutter package that provides infinite scroll functionality for ListViews and GridViews. Supports lazy loading, automatic pagination, and easy customization.

Features #

  • Infinite scrolling for Flutter widgets
  • Easy integration with ListView and GridView
  • Customizable loading indicators
  • Lightweight and fast

Usage #

import 'package:infinite_scroll_plus/infinite_scroll_plus.dart';

InfiniteScrollList(
  itemCount: items.length,
  itemBuilder: (context, index) {
    return ListTile(title: Text(items[index]));
  },
  onLoadMore: () async {
    // load more data
  },
);
1
likes
0
points
348
downloads

Publisher

unverified uploader

Weekly Downloads

A package to help developer to do add lazy loading or infinite scroll to the listview or use a infinite scrollable listview

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on infinite_scroll_plus