### Reanimated Installation Steps Example Source: https://github.com/software-mansion/react-native-reanimated/blob/main/docs/docs-reanimated/docs/guides/contributing.mdx A simple list demonstrating the basic steps required to install the Reanimated package. ```bash The Reanimated installation steps: - Add Reanimated package form npm - Add babel plugin to babel.config.js - Reset cache ``` -------------------------------- ### Local Docusaurus Server Setup Source: https://github.com/software-mansion/react-native-reanimated/blob/main/docs/docs-reanimated/docs/guides/contributing.mdx Steps to clone the Reanimated repository, install dependencies, and start the local Docusaurus server for documentation development. ```bash cd react-native-reanimated yarn cd docs/docs-reanimated yarn && yarn start ``` -------------------------------- ### Install Pods for Reanimated v3 Examples Source: https://github.com/software-mansion/react-native-reanimated/blob/main/packages/react-native-reanimated/RELEASE.md For Reanimated v3 releases, install pods in all example apps to update their Podfile.lock files. This command needs to be run in each example directory. ```bash bundle install && bundle exec pod install ``` -------------------------------- ### Build and Run Example Apps Source: https://github.com/software-mansion/react-native-reanimated/blob/main/docs/docs-reanimated/docs/guides/web-support.mdx Commands to build and run the example applications from the Reanimated repository. ```shell yarn && yarn build ``` ```shell yarn start ``` -------------------------------- ### Jest Configuration Example Source: https://github.com/software-mansion/react-native-reanimated/blob/main/docs/docs-reanimated/docs/guides/testing-with-jest.mdx Ensure your `jest.config.js` file includes the `setupFilesAfterEnv` property pointing to your setup file. For Jest versions older than 28, use `setupFiles` instead. ```javascript ... preset: 'react-native', setupFilesAfterEnv: ['./jest-setup.js'], ... ``` -------------------------------- ### Start Metro Bundler Source: https://github.com/software-mansion/react-native-reanimated/blob/main/apps/macos-example/README.md Start the Metro bundler from the MacOSExample directory to serve the application. ```bash cd .. yarn start ``` -------------------------------- ### Basic Shared Element Transition Setup Source: https://github.com/software-mansion/react-native-reanimated/blob/main/docs/docs-reanimated/docs/shared-element-transitions/overview.mdx This example demonstrates the basic setup for shared element transitions using `sharedTransitionTag` on two animated views within a navigation stack. Ensure you have `react-native-reanimated` and `react-navigation` installed and configured. ```javascript import Animated from 'react-native-reanimated'; const Stack = createNativeStackNavigator(); function One({ navigation }) { return ( <>