I'm trying to use https://docs.swmansion.com/react-native-reanimated/docs/api/LayoutAnimations/entryAnimations
From the documentation it seems pretty simple but when I run the code below nothing happens:
...
import Animated, { AnimatedLayout, FadeInRight } from "react-native-reanimated";
...
return (
<Animated.View
entering={FadeInRight.delay(3000)}>
...
</Animated.View>
In my package.json I'm using "react-native-reanimated": "^2.3.0-beta.3".
What am I missing? Is there some recommended tutorial on this topic?