diff --git a/RNTester/js/AnimatedGratuitousApp/AnExSet.js b/RNTester/js/AnimatedGratuitousApp/AnExSet.js index 1d13a2d86..d3e56068f 100644 --- a/RNTester/js/AnimatedGratuitousApp/AnExSet.js +++ b/RNTester/js/AnimatedGratuitousApp/AnExSet.js @@ -77,12 +77,10 @@ class AnExSet extends React.Component { inputRange: [0, 300], // and interpolate pixel distance outputRange: [1, 0], // to a fraction. }), - useNativeDriver: true, }).start(); }, onPanResponderMove: Animated.event( [null, {dy: this.state.dismissY}], // track pan gesture - {useNativeDriver: true}, ), onPanResponderRelease: (e, gestureState) => { if (gestureState.dy > 100) { @@ -90,7 +88,6 @@ class AnExSet extends React.Component { } else { Animated.spring(this.props.openVal, { toValue: 1, // animate back open if released early - useNativeDriver: true, }).start(); } },