We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27e137d commit 63fa2c2Copy full SHA for 63fa2c2
1 file changed
src/RefreshControl.web.js
@@ -50,6 +50,7 @@ export default function RefreshControl({
50
Animated.timing(pullDownSwipeMargin.current, {
51
toValue: refreshing ? 50 : 0,
52
duration: 350,
53
+ useNativeDriver: false,
54
}).start()
55
if (refreshing) {
56
pullPosReachedState.current = 0
@@ -65,6 +66,7 @@ export default function RefreshControl({
65
66
67
toValue: 0,
68
69
70
71
}
72
}, [])
@@ -91,6 +93,7 @@ export default function RefreshControl({
91
93
Animated.timing(pullPosReachedAnimated.current, {
92
94
toValue: newValue,
95
duration: 150,
96
97
98
99
},
0 commit comments