Animate Expo
Build animations in React Native and Expo, making the decisions in the order that determines whether they feel right — should it animate, which thread it runs on, which properties, spring or timing, how the gesture hands off, how it degrades. Writes the implementation with Reanimated, Gesture Handler, Expo Router and expo-haptics. Use when animating anything in an Expo app, adding gestures, sheets, screen transitions, press feedback or haptics, or fixing motion that stutters on device. For web animation use `animate`.
- Skill ID
- emilkowalski/skills/animate-expo
- Publisher
- emilkowalski
- Repository
- skills
- Installs
- 2,092
- Files
- 2
- Synced
- Sep 16, 2026
Open any RiverX project, open the Skills panel in the chat, and search for this identifier. The files are fetched from the source repository at install time.
emilkowalski/skills/animate-expoInstalls these files- RECIPES.md
- SKILL.md
What this skill tells the agent
Building Animations in Expo
Initial Response
When this skill is first invoked without a specific question, respond only with:
I'm ready to build animations in Expo and React Native that feel right on a real device, my knowledge comes from Emil Kowalski's animation philosophy.
Do not provide any other information until the user asks a question.
A construction skill for React Native. It turns a request for motion into an implementation that survives a strict review on a real device — not in the simulator, not on a flagship phone in dev mode.
Mobile changes three things about animation, and everything in this skill follows from them:
- There is no hover. Every affordance the web puts in hover has to live in press, position, or nothing.
- There are two runtimes. Worklets (Reanimated 4) makes this explicit: the React Native runtime, where React renders and your app logic runs, and the UI runtime, where worklets run every frame (plus optional worker runtimes for background work). An animation that touches the RN runtime stutters the moment the app does anything else. The whole craft is keeping motion on the UI runtime.
- The user's finger is on the element. Gestures are the primary input, so interruptibility and velocity handoff aren't polish — they're the baseline.
Operating Posture
You are a senior mobile engineer building the animation yourself. Make the call, state the reasoning in one line, write the code. Never present motion options as a menu.
Two failure modes, and the first is worse:
- Animating something that shouldn't animate. The gate below exists to produce zero lines of code sometimes.
- Animating the right thing on the wrong thread — a
setStateper frame, aPanResponder, an animatedheight. It looks fine in dev on your phone and drops to 20fps on a three-year-old Android.
Hard Rules
- Run the sequence in order. Steps 1 and 2 gate everything.
- Reanimated, not core `Animated`. Core
Animatedcan't be driven by a gesture without crossing the bridge, anduseNativeDriverrefuses anything but transform and opacity anyway. Reanimated worklets run on the UI thread and keep running while JS is busy. - No approximated values. Curves and spring configs come from the tables below.
- Reduced motion ships with the animation, not as a follow-up.
- Feel is judged on a release build on the slowest device you support. Nothing else counts as verified.
The Build Sequence
1. Should this animate at all?
| Frequency | Decision |
|---|---|
| 100+ times/day — tab switches, keyboard open/close, scrolling, toggles in settings | No animation. Platform default or nothing. Stop here. |
| Tens of times/day — press feedback, list navigation, row selection | Near-imperceptible only: under 150ms, or nothing |
| Occasional — sheets, modals, toasts, onboarding steps | Standard animation |
| Rare / first-time — success states, empty-state illustrations, celebration | The delight budget lives here |
Tab switches never slide. Tabs are peers, not a hierarchy — sliding implies depth that isn't there, and the user pays for it dozens of times a session. animation: 'none'.
If the request fails this gate, say so and don't write it.
2. What is the purpose?
Name it in one word before continuing: feedback, spatial consistency, state indication, preventing a jarring change, explanation, or delight (rare tier only).
Can't name it? Don't build it.
3. Pick the tool — cheapest that works
Walk down; stop at the first that fits.
| Need | Tool |
|---|---|
| A state-driven change with no gesture — press, toggle, color, a value flipping | Reanimated CSS transition (transitionProperty in the style) |
| Loop, multi-stage, or plays on mount with no state change | Reanimated CSS animation (animationName keyframes) |
| An element mounting or unmounting, or a list reflowing | Layout animations (entering / exiting / itemLayoutAnimation) |
| Anything a finger touches, or anything derived from scroll | `useSharedValue` + `Gesture` + `useAnimatedStyle` |
| Screen to screen | Native stack options in Expo Router. Never hand-roll this |
| A bottom sheet that is its own screen | `presentation: 'formSheet'` — it's a real UISheetPresentationController, free and correct |
| Tab bar | `NativeTabs` (from expo-router/unstable-native-tabs) — the platform's real tab bar, its behaviors and transitions included |
| Context menu, press-and-hold preview | `Link.Menu` / `Link.Preview` (Expo Router, iOS-only) — native menus and peek, never rebuilt in JS |
| Header that collapses into a large title | `headerLargeTitleEnabled` on the native stack (iOS-only; headerLargeTitle is deprecated) — not a scroll worklet |
| Pull to refresh | `RefreshControl` — hand-roll only when it's a signature interaction (see the threshold recipe) |
| UI that tracks the keyboard | `react-native-keyboard-controller` — the keyboard's real position, frame by frame, on the UI thread |
| Vector illustration, celebration, empty state | Lottie — for illustration only, never for UI state |
| A huge animated scene, freeform drawing | `@shopify/react-native-skia` — a canvas, for when the view hierarchy itself is the bottleneck |
Reach for a shared value only when the value is continuous or interruptible. A press scale is a CSS transition; a drag is a shared value. Using a worklet for a two-state toggle is the mobile equivalent of installing a motion library for a fade.
Dependencies. Install with npx expo install <package> — it resolves the version that matches the project's SDK, which plain npm install won't:
| Need | Package |
|---|---|
| Animation | react-native-reanimated + react-native-worklets |
| Gestures | react-native-gesture-handler |
| Navigation, sheets, native tabs, menus | expo-router |
| Haptics | expo-haptics |
| Keyboard-following UI | react-native-keyboard-controller (needs KeyboardProvider at the root — see the keyboard recipe) |
| Illustration, celebration | lottie-react-native |
| Very large animated scenes, custom drawing | @shopify/react-native-skia |
4. Pick the properties
- `transform` and `opacity` are free. Everything else is a layout pass.
width,height,margin,padding,flex,top,left,gapre-run Yoga on every frame for that node and its siblings. - The one exception: an absolutely positioned element with no children — a tab pill, a progress bar fill. It's out of flow, so nothing else re-lays-out, and animating
widthkeeps the corner radius thatscaleXwould smear. - Never `scale(0)`. Start from
scale(0.9–0.97)+opacity: 0. Nothing in the real world appears from nothing. - `transform` is an array and order matters —
[{ translateY }, { scale }]scales after moving; reversed, the translate gets scaled too. Keep translate first unless you want the multiplication. - Android shadows are `elevation`, and animating elevation re-renders the shadow every frame. Animate opacity of a pre-shadowed layer instead.
- Never animate `BlurView` intensity. On Android it re-renders the blur each frame. Crossfade the opacity of a static
BlurViewinstead. - Percentages work in `translate` and are relative to the element's own size —
translateY('100%')moves a sheet by its own height whatever its content.
5. Timing or spring
If a finger was involved, use a spring. Springs carry velocity through an interruption; timing curves restart. Everything else uses timing.
Reanimated's spring takes Apple's two designer parameters directly — use this form, not mass/stiffness/damping:
| Interaction | Config |
|---|---|
| Default settle, no overshoot | { duration: 400, dampingRatio: 1 } |
| Reposition / snap back after a drag | { duration: 400, dampingRatio: 0.8, velocity } |
