enhanced_paginated_view 2.0.1
enhanced_paginated_view: ^2.0.1 copied to clipboard
the enhanced paginated view is one of a kind widget that support pagination
2.0.1 #
- Remove the dependency on the
flutter_Svgpackage.
2.0.0 #
- Add support for slivers.
- Add support for custom loading widget.
- Add support for custom error widget.
- Add support for custom empty widget.
- Add support for custom scroll physics.
- BREAKING : Remove the showLoading, showError in favor of the
EnhancedStatus. - BREAKING : change
shouldDeduplicatetoremoveDuplicates. - BREAKING : change
isMaxReachedtohasReachedMax. - Add New property
directionto control the direction of the list and takeEnhancedViewDirectionas a value. - Add a new EnhancedDelegate to control the behavior of the list and customize the widgets.
1.0.7 #
- Change the way of comparing the items to remove the duplicate items from the list.
- Fix docs.
1.0.6 #
- Fix docs.
1.0.5 #
- Add new property
itemsPerPageto calculate page number more accurately. - Add new property
shouldDeduplicateto remove duplicate items from the list. - Add new extension method
enhancedDeduplication()to remove duplicate items from the list.
1.0.4 #
- Improve overall performance.
- Get rid of the
LoadingModesand use a new way to trigger theonLoadMorebehavior.
1.0.3 #
- Fix docs.
1.0.2 #
-
Improve the performance of the
onLoadMorebehavior to have three modes.LoadingMode.smooth: is the default mode, it will trigger theonLoadMorewhen the user scroll to 75% of the list.LoadingMode.restrict: it will trigger theonLoadMorewhen the user scroll to 100% of the list. -
New default
emptyWidgetwidget. -
New default
LoadingWidgetwidget. -
New default
errorWidgetwidget. -
Now it's possible to change the
ScrollPhysicsof the list.
1.0.1 #
- BREAKING : The
isLoadingStateis nowshowLoading. - BREAKING : The
showErrorWidgetis nowshowError. - BREAKING : The
emptyWidgetis nowemptyView. - Update the bloc example and the docs.
1.0.0 #
- Stable version.
- Add reverse support. that would be handy when you for example want to show a list of items in reverse order. in a chat app for example.
- Improve the example code with some of misunderstanding variables .