我的动画组件在本机反应中运行不流畅

时间:2019-02-04 18:20:41

标签: reactjs react-native react-native-animatable

我正在尝试将动画添加到我的本机应用程序中。 但它在Android和IOS上无法流畅播放 我应该怎么解决这个问题

我已经尝试使用Animated组件运行动画。 我的本机版本是“ 0.57.8” 这是我的代码:

export default class MainPage extends Component{

    constructor(props) {
        super(props)
        this.moveAnimation = new Animated.ValueXY({ x: 0, y: 0})
    }
    _openCardContainer = () => {
        Animated.spring(this.moveAnimation, {
          toValue: {x:0, y: 0},
          speed: 5,
        }).start()
    }
    render() {
        return(
            <Animated.View style={this.moveAnimation.getLayout()}>
              <EditorChoiceContainer/>
            </Animated.View>
        )
    }
}

此代码可以正常工作,但它不流畅且非常缓慢

请帮助我解决这个问题

1 个答案:

答案 0 :(得分:2)

Animated.spring(this.moveAnimation, {
      toValue: {x:0, y: 0},
      speed: 5,
  useNativeDriver: true, // <-- Add this
    }).start()