Commit 19cb15d 1 parent 3b15b15 commit 19cb15d Copy full SHA for 19cb15d
File tree 3 files changed +5
-9
lines changed
3 files changed +5
-9
lines changed Original file line number Diff line number Diff line change
1
+ ## 3.3.2+1
2
+ - fix: Compatible with versions below Flutter3.10 [ #722 ] ( https://github.com/xuelongqy/flutter_easy_refresh/issues/722 ) .
3
+
1
4
## 3.3.2
2
5
- fix: BezierIndicator.spinBuilder doesn't work.
3
6
- feat: Add BezierIndicator.spinInCenter.
Original file line number Diff line number Diff line change @@ -427,14 +427,7 @@ class _ERScrollPhysics extends BouncingScrollPhysics {
427
427
// This feature after v3.7.0-13.0.pre.
428
428
return (this as dynamic ).toleranceFor (metrics);
429
429
} catch (_) {
430
- try {
431
- return (this as dynamic ).tolerance;
432
- } catch (_) {
433
- return Tolerance (
434
- velocity: 1.0 / (0.050 * metrics.devicePixelRatio),
435
- distance: 1.0 / metrics.devicePixelRatio,
436
- );
437
- }
430
+ return this .tolerance;
438
431
}
439
432
}
440
433
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.3.2
3
+ version : 3.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