Install React Native Reanimated
React Native Reanimated comes pre-installed with the latest Expo SDK. For older versions or custom projects, follow the installation guide below.
exporeact-nativereanimated
Step 1: Install Reanimated
npx expo install react-native-reanimated
Step 2: Configure babel.config.js (if not using default Expo config)
Only add this if you're customizing the babel configuration:
module.exports = {
presets: [
... // don't add it here :)
],
plugins: [
...
'react-native-reanimated/plugin',
],
};
Step 3: Clear Metro bundler cache
npx expo start -c