File tree 5 files changed +13
-6
lines changed
5 files changed +13
-6
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.6.4
2
+ * fix error crash by deprecated function removed
3
+ * add extra ScrollView reference parameter
4
+
5
+
1
6
## 1.6.3
2
7
* fix bug: gesture disabled after refresh complete in an error refreshState
3
8
* fix problem: Footer hide back suddenly(this cause by the flutter breaking change)
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ add this line to pubspec.yaml
35
35
``` yaml
36
36
37
37
dependencies :
38
- pull_to_refresh : ^1.6.3
38
+ pull_to_refresh : ^1.6.4
39
39
40
40
```
41
41
Original file line number Diff line number Diff line change 35
35
``` yaml
36
36
37
37
dependencies :
38
- pull_to_refresh : ^1.6.13
38
+ pull_to_refresh : ^1.6.4
39
39
40
40
```
41
41
Original file line number Diff line number Diff line change @@ -407,7 +407,8 @@ class SmartRefresherState extends State<SmartRefresher> {
407
407
physics = physics ?? childView.physics;
408
408
center = center ?? childView.center;
409
409
anchor = anchor ?? childView.anchor;
410
- keyboardDismissBehavior = keyboardDismissBehavior ?? childView.keyboardDismissBehavior;
410
+ keyboardDismissBehavior =
411
+ keyboardDismissBehavior ?? childView.keyboardDismissBehavior;
411
412
restorationId = restorationId ?? childView.restorationId;
412
413
clipBehavior = clipBehavior ?? childView.clipBehavior;
413
414
scrollController = scrollController ?? childView.controller;
@@ -430,8 +431,9 @@ class SmartRefresherState extends State<SmartRefresher> {
430
431
semanticChildCount: semanticChildCount,
431
432
primary: primary,
432
433
clipBehavior: clipBehavior ?? Clip .hardEdge,
433
- keyboardDismissBehavior: keyboardDismissBehavior?? ScrollViewKeyboardDismissBehavior .manual,
434
- anchor: anchor?? 0.0 ,
434
+ keyboardDismissBehavior:
435
+ keyboardDismissBehavior ?? ScrollViewKeyboardDismissBehavior .manual,
436
+ anchor: anchor ?? 0.0 ,
435
437
restorationId: restorationId,
436
438
center: center,
437
439
physics:
Original file line number Diff line number Diff line change 1
1
name : pull_to_refresh
2
2
description : a widget provided to the flutter scroll component drop-down refresh and pull up load.
3
- version : 1.6.3
3
+ version : 1.6.4
4
4
homepage : https://github.com/peng8350/flutter_pulltorefresh
5
5
6
6
environment :
You can’t perform that action at this time.
0 commit comments