diff --git a/src/components/indicator/index.js b/src/components/indicator/index.js index b2de0a8..4e34f3b 100644 --- a/src/components/indicator/index.js +++ b/src/components/indicator/index.js @@ -77,7 +77,7 @@ export default class Indicator extends PureComponent { let { hideAnimationDuration: duration } = this.props; Animated - .timing(hideAnimation, { toValue: animating? 1 : 0, duration }) + .timing(hideAnimation, { toValue: animating? 1 : 0, duration, useNativeDriver: true }) .start(); } }