onAnimationBegin 和 onAnimationEnd 不起作用。它们没有被触发。

作者: renanbronchart创建于 2022年5月4日更新于 2024年1月9日

<Animatable.View transition={["maxHeight", "paddingVertical"]} duration={150} delay={500} easing="ease-out-cubic" onAnimationEnd={() => { console.log('finish animation')}} onAnimationBegin={() => { console.log('begin animation')}} style={[ styles.postWrapper, { maxHeight: isRemoved ? 0 : 1000, paddingVertical: isRemoved ? 0 : 16 } ]} />

内容来源: oblador/react-native-animatable