我正在尝试使用https://docs.swmansion.com/react-native-reanimated/docs/api/LayoutAnimations/entryAnimations
从文档来看,它看起来很简单,但是当我运行下面的代码时,什么也没有发生:
...
import Animated, { AnimatedLayout, FadeInRight } from "react-native-reanimated";
...
return (
<Animated.View
entering={FadeInRight.delay(3000)}>
...
</Animated.View>
在我的 package.json 中,我使用的是“react-native-reanimated”:“^2.3.0-beta.3”。
我错过了什么?有没有关于这个主题的推荐教程?