incrementally_loading_listview 0.2.0+2 incrementally_loading_listview: ^0.2.0+2 copied to clipboard
An extension of the list view widget for incrementally loading data on scrolling
[0.2.0+2] 28/9/2019 #
- Add pub badge to readme
[0.2.0+1] 14/8/2019 #
- Update email address in pubspec.yaml
[0.2.0] 10/6/2019 #
- BREAKING CHANGE Updated rxdart dependency
[0.1.0+1] 27/3/2019 #
- No functional changes in this release. Changes were to fix formatting to meet Dart guidelines
[0.1.0] - 25/2/2019 #
- BREAKING CHANGE Updated rxdart dependency
- Formatted README. Thanks to PR from Mohammed Salman
[0.0.4+3] - 15/8/2018 #
- Reordering changelog
[0.0.4+2] - 15/8/2018 #
- BREAKING CHANGE separated
onLoadMore
callback. There is now anonLoadMore
that doesn't pass a boolean and is triggered when more items are being loaded andonLoadMoreFinished
when more items have finished being loaded. - Updated README to explain
onLoadMore
andonLoadMoreFinished
[0.0.4+1] - 15/8/2018 #
- Updated README
[0.0.4] - 15/8/2018 #
- BREAKING CHANGES fixed an issue that occurred where package no longer worked due to the way the list view was triggering the loading of more items. This was due to the fact that setState was being called while the build was occurred. Changed this now to use a
StreamBuilder
wrapped around aListView.builder
now so that upon reaching the nth item from the bottom will emit an item onto a stream that executes the function required to load more items and rebuild theListView
when the functions completes execution. As a result of these changesitemCount
andhasMore
are now callbacks - Updated sample to add navigating to an item details page for testing
[0.0.3] - 23/7/2018 #
- Corrected some bad grammar in the README due to late night blogging/coding...
[0.0.2] - 21/7/2018 #
- Updated license
[0.0.1] - 21/7/2018 #
- Initial release