Commit c473d01 1 parent ecd2d40 commit c473d01 Copy full SHA for c473d01
File tree 4 files changed +7
-6
lines changed
4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 1
- ## Next
1
+ ## 3.2.1
2
+ - fix: Footer's maxOverOffset property does not work.
2
3
- fix: When maxOverOffset is 0, list scrolling loses inertia.
3
4
- fix: When there is no task, the mode still changes [ #608 ] ( https://github.com/xuelongqy/flutter_easy_refresh/issues/608 ) .
4
5
- fix: HapticFeedback does not work when triggerWhenReach is true.
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ description: EasyRefresh example.
7
7
# Both the version and the builder number may be overridden in flutter
8
8
# build by specifying --build-name and --build-number, respectively.
9
9
# Read more about versioning at semver.org.
10
- version : 3.2.0+51
10
+ version : 3.2.1+52
11
11
12
12
environment :
13
13
sdk : " >=2.17.0 <3.0.0"
Original file line number Diff line number Diff line change @@ -330,12 +330,12 @@ class _ERScrollPhysics extends BouncingScrollPhysics {
330
330
// Maximum overscroll offset
331
331
if (footerNotifier.actualMaxOverOffset != double .infinity &&
332
332
position.maxScrollExtent <
333
- value - headerNotifier .actualMaxOverOffset) {
333
+ value - footerNotifier .actualMaxOverOffset) {
334
334
_updateIndicatorOffset (
335
335
position,
336
- position.maxScrollExtent + headerNotifier .actualMaxOverOffset,
336
+ position.maxScrollExtent + footerNotifier .actualMaxOverOffset,
337
337
value);
338
- return (value - headerNotifier .actualMaxOverOffset) -
338
+ return (value - footerNotifier .actualMaxOverOffset) -
339
339
position.maxScrollExtent;
340
340
}
341
341
// hit bottom over
Original file line number Diff line number Diff line change 1
1
name : easy_refresh
2
2
description : A flutter widget that provides pull-down refresh and pull-up load.
3
- version : 3.2.0+ 1
3
+ version : 3.2.1
4
4
homepage : https://xuelongqy.github.io/flutter_easy_refresh
5
5
repository : https://github.com/xuelongqy/flutter_easy_refresh
6
6
issue_tracker : https://github.com/xuelongqy/flutter_easy_refresh/issues
You can’t perform that action at this time.
0 commit comments