infinite_scroll_plus 1.0.2
infinite_scroll_plus: ^1.0.2 copied to clipboard
A lightweight Flutter package for effortless lazy loading,infinite scrolling,search & sort.
0.0.3 #
Added #
- Full support for all platforms.
- Infinite scrolling for Flutter ListViews and GridViews.
- Lazy loading support with customizable loading indicators.
0.0.5 #
0.0.6 #
Added #
- Complete library-level documentation.
- Inline comments for
InfiniteScrollListandInfiniteScrollGrid. - Clarified
ItemWidgetBuildertypedef.
Fixed #
- Dangling doc comment warning.
- Formatting issues with Dart formatter.
Improved #
- Scroll controller lifecycle handling.
- Readability and maintainability of scroll logic.
0.0.7 #
Added #
- Full DartDoc coverage for all public API elements.
- Optional
loadingWidgetparameter. - More detailed documentation for constructors, properties, and methods.
Changed #
- Removed unnecessary
library infinite_scroll_plus;declaration. - Improved documentation around scroll detection.
Fixed #
- Public API documentation coverage to meet
public_member_api_docslint requirement.
0.0.8 #
0.0.9 #
0.0.12 — 0.0.14 #
1.0.0 — Major Upgrade 🎉 #
Added #
- Search support:
Allows filtering of already loaded data usingsearchQueryandonSearchcallbacks. - Sort support:
Local list/grid sorting throughapplySortandonSortcallbacks. - Generic item system (
InfiniteScrollList<T>&InfiniteScrollGrid<T>): Ensures type safety and flexibility. - New improved example app: Includes search bar, sort button, and list/grid toggle.
- Cleaner API:
ReplaceditemCountwithitemsto enable local search & sort processing.
Changed #
- Refactored
itemBuilderto use:(BuildContext context, T item, int index)