React Native: How do you animate the rotation of an Image?

后端 未结 2 683
执念已碎
执念已碎 2020-12-24 05:08

Rotation is a style transform and in RN, you can rotate things like this

  render() {
    return (
      

        
2条回答
  •  北海茫月
    2020-12-24 05:22

    Don't forget to add property useNativeDriver to ensure that you get the best performance out of this animation:

    // First set up animation 
    Animated.timing(
        this.state.spinValue,
      {
        toValue: 1,
        duration: 3000,
        easing: Easing.linear,
        useNativeDriver: true
      }
    ).start();
    

提交回复
热议问题