Skip to main content
Version: Next

Getting Started

Installation

Step 1: Install the packages

  • Install rn-nativeflow
  npm install rn-nativeflow
  • Install react native reanimated
  npm install react-native-reanimated
  • Install react native gesture handler
  npm install react-native-gesture-handler

Step 2: Add Reanimated's babel plugin

Add react-native-reanimated/plugin plugin to your babel.config.js

babel.config.js
module.exports = {
presets: [
... // don't add it here :)
],
plugins: [
...
'react-native-reanimated/plugin',
],
};
  npx expo start -c