具有幻灯片动画的React-native手风琴/切换功能

时间:2018-02-08 06:40:07

标签: react-native

我希望手风琴/切换功能有幻灯片或类似的动画

我试过这个解决方案。但是关闭动画时不起作用

constructor(props) {
        super(props);       
            height: new Animated.Value(0)
        };

}

 _toggle = () => {   

            this.state.height.setValue(0);
            Animated.spring(
                this.state.height,
                {
                    toValue: expanded ? 200 : 0,
                    duration: 200
                }
            ).start();

}

提前感谢您的回答!!!

1 个答案:

答案 0 :(得分:0)

_toggle中的第一行将值设置为0.

这就是为什么当它被扩展时,动画从0变为0。 删除该行应该对其进行排序。