Layout animation — animate layout changes.
Entering animation:
1import Animated, { FadeIn, SlideInRight } from 'react-native-reanimated';23<Animated.View4 entering={FadeIn.duration(500)}5 exiting={FadeOut.duration(300)}6>7 <Text>Animated content</Text>8</Animated.View>
Layout transition:
1import Animated, { Layout } from 'react-native-reanimated';23<Animated.View4 layout={Layout.springify()}5 style={{ opacity: 1 }}6>7 <Text>Layout animation</Text>8</Animated.View>
Predefined animations: