cached_listview 2.0.0
cached_listview: ^2.0.0 copied to clipboard
🧾 Flutter widget allowing easy cache-based data display in a ListView featuring pull-to-refresh and error banners.
2.0.0 - 2019-10-12 #
- Complete overhaul of the API.
- Package moved to
flutter_cached.
1.1.5 - 2019-10-11 #
- Add more examples to the demo. Now all abstraction levels are covered.
- Fix unbound vertical height issue caused by
AnimatedCrossFade.
1.1.4 - 2019-10-11 #
- Fix type propagation on
CacheController'supdates.
1.1.3 - 2019-10-06 #
- We now depend on the
pull_to_refreshpackage so that we can start the refresh indicator programatically. - Fix missing meta dependency.
1.1.2 - 2019-10-05 #
CachedListViewnow takes either anitemBuilderfor building the items directly one after another in an index-agnostic deterministic way or it takes anitemSliverBuilderfor transforming all the items into slivers simultaneously, allowing for changing the order, grouping etc of items.
1.1.1 - 2019-10-04 #
- Fix type propagation for
CachedCustomScrollView.
1.1.0 - 2019-10-04 #
- Add abstraction level below
CachedListView:CachedCustomScrollView. - Rename
CacheManagertoCacheController. - Update readme to reflect changes and display screenshots in table.
1.0.0 - 2019-10-04 #
- Add
CacheManagerandCachedListView.