We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad8c7e5 commit cf00967Copy full SHA for cf00967
ActionButton.js
@@ -254,7 +254,7 @@ const ActionButton = props => {
254
if (active) return reset(animate);
255
256
if (animate) {
257
- Animated.spring(anim.current, { toValue: 1 }).start();
+ Animated.spring(anim.current, { toValue: 1, useNativeDriver: false }).start();
258
} else {
259
anim.current.setValue(1);
260
}
@@ -266,7 +266,7 @@ const ActionButton = props => {
266
if (props.onReset) props.onReset();
267
268
269
- Animated.spring(anim.current, { toValue: 0 }).start();
+ Animated.spring(anim.current, { toValue: 0, useNativeDriver: false }).start();
270
271
anim.current.setValue(0);
272
0 commit comments