rn-animations
Installation
SKILL.md
React Native Animations
Instructions
Use react-native-reanimated v3 as the default. Prefer worklets running on the UI thread over JS-driven Animated. Combine with react-native-gesture-handler v2 for gestures.
1. Shared Values and Derived Styles
import Animated, {
useSharedValue,
useAnimatedStyle,
withSpring,
withTiming,
Easing,
} from 'react-native-reanimated';
import { Pressable } from 'react-native';