React Native flexDirection动画

时间:2018-10-02 15:46:00

标签: reactjs react-native animation

我正在尝试制作一种动画,该动画基本上会改变视图的flexDirection。检查代码

state = {
        fadeAnim: new Animated.Value(0),
        flex_direction_anim: new Animated.Value("column")
    }

    componentDidMount() {
        Animated.timing(
            this.state.fadeAnim,
            {
                toValue: 1,                   
                duration: 2000
            }
        ).start();

        setTimeout(() => {
            Animated.timing(
                this.state.flex_direction_anim, {
                    toValue: "row",
                    duration: 2000
                }
            )
        }, 5000)
    }

在上面的代码中,我设置了两个动画,渐变动画效果很好,但是另一个动画只会引发以下错误。

enter image description here

我不确定我在这里做错了什么,可能是React-Native不支持这种动画。

我还使用了react-native-animatable库,还开设了一个问题here

任何文档或潜在客户都会非常有帮助, 谢谢

0 个答案:

没有答案