React NativeReanimated
Create smooth animations with an excellent developer experience.
Why Reanimated?
Declarative
Reanimated comes with declarative API for creating animations. Complexity reduced from tens of methods to just a few. Define what the animation should look like and leave Reanimated to animate the styles and properties for you.
Performant
Reanimated lets you define animations in plain JavaScript which run natively on the UI thread by default. Smooth animations and interactions up to 120 fps and beyond. Reanimated delivers a native experience your users deserve.
Feature-rich
Reanimated’s power doesn’t end on animating only simple views or images. Hook your animations into device sensors or keyboard. Create amazing experiences using Layout Animations or animate elements between navigation screens with ease.
Animations
Animate every React Native prop on iOS, Android and the Web up to 120 fps.
function App() {
const width = useSharedValue(100);
const handlePress = () => {
width.value = withSpring(width.value + 50);
};
return <Animated.View style={{ ...styles.box, width }} />
}
Gestures
Gesture smoothly thanks to Reanimated’s integration with React Native Gesture Handler.
import { Gesture, GestureDetector } from ?"react-native-gesture-handler";
function App() {
const pan = Gesture.Pan();
return (
<GestureDetector gesture={pan}>
<Animated.View />
</GestureDetector>
);
}
Layout animations
Animate views when they are added and removed from the view hierarchy. Just like that.
function App() {
return <Animated.View entering={FadeIn} exiting={FadeOut} />;
}
Sensor-based animations
Connect your animations to a gyroscope or accelerometer with just one hook. It’s that easy.
const gyroscope = useAnimatedSensor(SensorType.GYROSCOPE);
useDerivedValue(() => {
const { x, y, z } = gyroscope.sensor.value;
});
Keyboard-based animations
Create animations based on the device keyboard state and position.
function App() {
const keyboard = useAnimatedKeyboard();
const animatedStyle = useAnimatedStyle(() => ({
transform: [{ translateY: -keyboard.height.value }],
});
//...
}
Shared Element Transitions
Seamlessly animate elements between navigation screens with a single line of code.
function App() {
return <Animated.View sharedTransitionTag="hero-element" />
}
Testimonials
Syed Noman
“Reanimated is an amazing library! It made my apps smooth and engaging, boosting performance and user happiness. Highly recommend for any developer wanting to upgrade their app.”
Daniel Grychtol
TheWidlarzGroup“Simply - it’s pure joy to write animations with Reanimated now! Also, API that was introduced in V2 - imo game changer in terms of the learning curve (compared to API from V1) 💜.”