Skip to main content
Version: 1.x

View, Props, etc

Follow the original Animated library guides to learn how values can be connected to View attributes. Similarly with react-native-reanimated you need to use components prefixed with Animated. (remember to import Animated from reanimated package). For example:

import Animated from 'react-native-reanimated';

// use
<Animated.View/>
// instead of
<View/>