Building Animations in 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.

How to use it

Claude Code
  1. Run the line below. It pulls the whole folder into ~/.claude/skills/animate-expo, including the files SKILL.md points to.
  2. Describe your job in plain words. Claude Code follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit emilkowalski/skills/skills/animate-expo#main ~/.claude/skills/animate-expo

For one project only, change the path to .claude/skills/animate-expo. This skill also uses RECIPES.md — copying SKILL.md alone won't be enough. See the folder on GitHub.

Claude (web or desktop app)
  1. On this page open ⋯ → Download .md.
  2. Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
  3. Pick the file and Save. Claude shows the name and description and runs a security scan.
  4. Check the skill is switched on.
  5. Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
  1. ChatGPT: make a Project and paste it into Instructions.
  2. Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
  • Check which app you pasted it into — the steps above name the right one.
  • Some skills need the paid tier of Claude or ChatGPT.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Source of Building Animations in Expo

Show the full text264 lines
namedescription
animate-expoBuild 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`.

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:

  1. There is no hover. Every affordance the web puts in hover has to live in press, position, or nothing.
  2. 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.
  3. 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:

  1. Animating something that shouldn't animate. The gate below exists to produce zero lines of code sometimes.
  2. Animating the right thing on the wrong thread — a setState per frame, a PanResponder, an animated height. It looks fine in dev on your phone and drops to 20fps on a three-year-old Android.

Hard Rules

  1. Run the sequence in order. Steps 1 and 2 gate everything.
  2. Reanimated, not core Animated. Core Animated can't be driven by a gesture without crossing the bridge, and useNativeDriver refuses anything but transform and opacity anyway. Reanimated worklets run on the UI thread and keep running while JS is busy.
  3. No approximated values. Curves and spring configs come from the tables below.
  4. Reduced motion ships with the animation, not as a follow-up.
  5. 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, gap re-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 width keeps the corner radius that scaleX would 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 BlurView instead.
  • 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 }
Sheet, drawer { duration: 300, dampingRatio: 0.8, velocity }
Must not pass a hard edge add overshootClamping: true

Bounce only when the gesture carried momentum. Overshoot on a menu that faded in feels wrong; overshoot on a card you flicked feels right.

Easing, for everything without a finger on it:

Situation Easing
Entering or exiting ease-out
Moving / morphing on screen ease-in-out
Constant motion (progress, marquee) linear
Default ease-out

Never ease-in on UI. It starts slow, delaying the exact moment the user is watching. Reanimated's built-ins are as weak as CSS's — use these:

import { Easing } from 'react-native-reanimated';

const EASE_OUT = Easing.bezier(0.23, 1, 0.32, 1);      // strong ease-out for UI
const EASE_IN_OUT = Easing.bezier(0.77, 0, 0.175, 1);  // on-screen movement
const EASE_SHEET = Easing.bezier(0.32, 0.72, 0, 1);    // iOS sheet curve

Duration:

Element Duration
Press feedback 100–150ms
Toggle, chip, small state change 150–200ms
Sheet, modal, drawer spring, ~300ms perceived
Screen transition the platform default — don't override it

Mobile UI animations stay under 300ms, same as web. The platform's own transitions are longer (iOS push is 350ms); match the platform for navigation, beat it everywhere else.

6. Keep it off the JS thread

This is the mobile-specific craft, and it's where most React Native motion dies.

  • Never setState from a gesture or scroll handler. One React render per frame is the single biggest cause of jank in RN apps. Shared value → useAnimatedStyle, and React never re-renders at all.
  • Never schedule back to the RN runtime inside onUpdate or a scroll handler. scheduleOnRN(fn, ...args) from react-native-worklets — the Reanimated 4 replacement for the deprecated runOnJS(fn)(...args) — queues an RN-runtime call, and in onUpdate that's 60–120× per second. It belongs in onEnd, or in a useAnimatedReaction that fires when a value crosses a threshold.
  • Never read a shared value during render (translateY.get() in JSX). It's a snapshot that never updates and it silently desyncs. Never write one during render either — it fires mid-reconciliation, and a re-render you didn't cause replays the write. Touch shared values only in worklets, handlers, and effects.
  • Use .get() / .set(), not .value. Same API, but direct .value access is the form the React Compiler can't see through — the Reanimated docs call get/set the compiler-safe way. set also takes a functional update: sv.set((v) => v + 1).
  • Functions called from a worklet need 'worklet' as their first line, or they throw at runtime on device while working fine in the debugger.
7. Press, not hover

Every hover affordance from the web has to be redesigned, not ported.

  • Feedback on press-in, commit on press-out. Waiting for the tap to complete before showing anything feels dead — this is the latency the user actually perceives.
  • scale: 0.97 in 100–150ms on any pressable, Pressable + a CSS transition. scale takes the label and icons with it, which is what makes it read as physical.
  • 44×44pt minimum touch target (48dp Android). If the visual is smaller, add hitSlop — don't grow the visual.
  • pressRetentionOffset so a finger drifting a few pixels doesn't cancel a press the user meant.
  • Android ripple only in a Material-styled app. In a custom-designed app, the same scale on both platforms is more coherent than a ripple on one.
8. Haptics

Mobile has a sense the web doesn't. Use it sparingly and it becomes the thing that makes the app feel expensive; use it everywhere and users turn it off.

Moment Call
A value ticks past a step — picker, slider detent, segmented control Haptics.selectionAsync()
Something snaps home, a sheet detent catches, a drag commits Haptics.impactAsync(ImpactFeedbackStyle.Light)
A heavy object lands, a destructive action fires Haptics.impactAsync(ImpactFeedbackStyle.Medium)
Operation succeeded or failed Haptics.notificationAsync(NotificationFeedbackType.Success / Error)

Three rules, and they're absolute:

  • Same frame as the visual. A haptic that lags its animation reads as a glitch, not as feedback. Fire it at the causal moment — the detent catching — not when the animation finishes.
  • One per user action. Never on scroll, never per frame, never on an entrance animation the user didn't cause.
  • Never the only feedback. Haptics are off system-wide for many users, and silent on most Android hardware. The visual has to stand alone.

From a worklet, haptics must be scheduled back to the RN runtime: scheduleOnRN(Haptics.selectionAsync).

9. Reduced motion and accessibility
import { useReducedMotion, ReduceMotion, withSpring } from 'react-native-reanimated';

const reduced = useReducedMotion();
const y = useSharedValue(reduced ? 0 : SHEET_HEIGHT);

// or let each animation decide
withSpring(0, { duration: 300, dampingRatio: 0.8, reduceMotion: ReduceMotion.System });

Reduced motion means fewer and gentler, not zero: keep opacity and color changes that explain a state change, drop translation, scale, parallax and overshoot. Screen transitions become animation: 'fade'.

Text scales. allowFontScaling is on by default, so any height you measured at default type size is wrong at 200%. Never animate to a hardcoded height — measure with onLayout, or animate a transform instead.

Setup that silently breaks motion

Check these first when "the animation just doesn't run":

  • Install through Expo so versions match the SDK: npx expo install react-native-reanimated react-native-worklets. In an Expo project, babel-preset-expo configures the worklets Babel plugin automatically — no babel.config.js step. Only a bare RN project without that preset adds the plugin manually, and there it must be last in the list. A missing or misplaced plugin doesn't silently fall back anymore — it throws Failed to create a worklet at runtime.
  • GestureHandlerRootView must wrap the app, or gestures do nothing with no error.
  • Reanimated 4 requires the New Architecture.
  • Expo Go is not a performance environment. Judge feel in a release build; a dev build's JS thread is slow enough to hide exactly the problems you're looking for.

120fps

On ProMotion iPhones, third-party animations are capped at 60fps unless CADisableMinimumFrameDurationOnPhone is set. Recent Expo SDKs set it by default — confirm it's there, and add it if not:

{ "expo": { "ios": { "infoPlist": { "CADisableMinimumFrameDurationOnPhone": true } } } }

Then the frame budget is 8ms, not 16. This is also why a UI-thread animation matters more on mobile than it does on web.

Recipes

For ready-to-build implementations — press feedback, drag-to-dismiss sheet, swipe-to-delete, collapsing header, list entrances, keyboard-synced UI, tab indicator, screen transitions — see RECIPES.md. Load it whenever the request matches one; start from the recipe rather than from a blank file.

Never Ship

Never Instead
PanResponder Gesture.Pan() from gesture-handler
setState in a gesture or scroll handler shared value + useAnimatedStyle
runOnJS (deprecated in Reanimated 4) scheduleOnRN from react-native-worklets
scheduleOnRN per frame onEnd, or useAnimatedReaction at a threshold
Reading or writing a shared value during render .get() / .set() in worklets, handlers, effects
Core Animated for anything a finger touches Reanimated
Animating height / width / margin / flex / top transform + opacity (absolute, childless elements exempt)
Animating BlurView intensity or Android elevation crossfade a static layer
entering on a virtualized list row animate the container, or itemLayoutAnimation
A screen transition rebuilt in JS native stack animation
Sliding between tabs animation: 'none'
Easing.in(...) on a UI element Easing.bezier(0.23, 1, 0.32, 1)
scale(0) entrance scale(0.95) + opacity: 0
Distance-only dismissal threshold velocity or distance — a flick is enough
Hard stop at a boundary rubber-band resistance
A haptic per frame, or as the only feedback one per commit, always paired with a visual
Judging feel in Expo Go or the simulator release build, slowest supported device

Output

Write the code. Then, in at most a few lines:

  • The gate result — frequency tier and named purpose. Say what you rejected and why.
  • The ingredients — tool, properties, spring or curve + duration, thread.
  • What to feel-check on device — gestures, velocity handoff and haptic timing cannot be judged from code. Name what to try: flick it, interrupt it mid-flight, reverse it, run it on the slowest Android you have.

The code is the deliverable. Don't pad it into a report.

Tone

Opinionated and brief. When the honest answer is "this shouldn't animate," or "this needs a real device before I can tell you if it's right," give it.

1---
2name: animate-expo
3description: 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`.
4---
5 
6# Building Animations in Expo
7 
8## Initial Response
9 
10When this skill is first invoked without a specific question, respond only with:
11 
12> 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.
13 
14Do not provide any other information until the user asks a question.
15 
16A 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.
17 
18Mobile changes three things about animation, and everything in this skill follows from them:
19 
201. **There is no hover.** Every affordance the web puts in hover has to live in press, position, or nothing.
212. **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.
223. **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.
23 
24## Operating Posture
25 
26You 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.
27 
28Two failure modes, and the first is worse:
29 
301. **Animating something that shouldn't animate.** The gate below exists to produce zero lines of code sometimes.
312. **Animating the right thing on the wrong thread** — a `setState` per frame, a `PanResponder`, an animated `height`. It looks fine in dev on your phone and drops to 20fps on a three-year-old Android.
32 
33## Hard Rules
34 
351. **Run the sequence in order.** Steps 1 and 2 gate everything.
362. **Reanimated, not core `Animated`.** Core `Animated` can't be driven by a gesture without crossing the bridge, and `useNativeDriver` refuses anything but transform and opacity anyway. Reanimated worklets run on the UI thread and keep running while JS is busy.
373. **No approximated values.** Curves and spring configs come from the tables below.
384. **Reduced motion ships with the animation**, not as a follow-up.
395. **Feel is judged on a release build on the slowest device you support.** Nothing else counts as verified.
40 
41## The Build Sequence
42 
43### 1. Should this animate at all?
44 
45| Frequency | Decision |
46| --- | --- |
47| 100+ times/day — tab switches, keyboard open/close, scrolling, toggles in settings | **No animation.** Platform default or nothing. Stop here. |
48| Tens of times/day — press feedback, list navigation, row selection | Near-imperceptible only: under 150ms, or nothing |
49| Occasional — sheets, modals, toasts, onboarding steps | Standard animation |
50| Rare / first-time — success states, empty-state illustrations, celebration | The delight budget lives here |
51 
52**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'`.
53 
54If the request fails this gate, say so and don't write it.
55 
56### 2. What is the purpose?
57 
58Name it in one word before continuing: **feedback**, **spatial consistency**, **state indication**, **preventing a jarring change**, **explanation**, or **delight** (rare tier only).
59 
60Can't name it? Don't build it.
61 
62### 3. Pick the tool — cheapest that works
63 
64Walk down; stop at the first that fits.
65 
66| Need | Tool |
67| --- | --- |
68| A state-driven change with no gesture — press, toggle, color, a value flipping | **Reanimated CSS transition** (`transitionProperty` in the style) |
69| Loop, multi-stage, or plays on mount with no state change | **Reanimated CSS animation** (`animationName` keyframes) |
70| An element mounting or unmounting, or a list reflowing | **Layout animations** (`entering` / `exiting` / `itemLayoutAnimation`) |
71| Anything a finger touches, or anything derived from scroll | **`useSharedValue` + `Gesture` + `useAnimatedStyle`** |
72| Screen to screen | **Native stack options in Expo Router.** Never hand-roll this |
73| A bottom sheet that is its own screen | **`presentation: 'formSheet'`** — it's a real UISheetPresentationController, free and correct |
74| Tab bar | **`NativeTabs`** (from `expo-router/unstable-native-tabs`) — the platform's real tab bar, its behaviors and transitions included |
75| Context menu, press-and-hold preview | **`Link.Menu` / `Link.Preview`** (Expo Router, iOS-only) — native menus and peek, never rebuilt in JS |
76| Header that collapses into a large title | **`headerLargeTitleEnabled`** on the native stack (iOS-only; `headerLargeTitle` is deprecated) — not a scroll worklet |
77| Pull to refresh | **`RefreshControl`** — hand-roll only when it's a signature interaction (see the threshold recipe) |
78| UI that tracks the keyboard | **`react-native-keyboard-controller`** — the keyboard's real position, frame by frame, on the UI thread |
79| Vector illustration, celebration, empty state | **Lottie** — for illustration only, never for UI state |
80| A huge animated scene, freeform drawing | **`@shopify/react-native-skia`** — a canvas, for when the view hierarchy itself is the bottleneck |
81 
82Reach 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.
83 
84**Dependencies.** Install with `npx expo install <package>` — it resolves the version that matches the project's SDK, which plain `npm install` won't:
85 
86| Need | Package |
87| --- | --- |
88| Animation | `react-native-reanimated` + `react-native-worklets` |
89| Gestures | `react-native-gesture-handler` |
90| Navigation, sheets, native tabs, menus | `expo-router` |
91| Haptics | `expo-haptics` |
92| Keyboard-following UI | `react-native-keyboard-controller` (needs `KeyboardProvider` at the root — see the keyboard recipe) |
93| Illustration, celebration | `lottie-react-native` |
94| Very large animated scenes, custom drawing | `@shopify/react-native-skia` |
95 
96### 4. Pick the properties
97 
98- **`transform` and `opacity` are free.** Everything else is a layout pass. `width`, `height`, `margin`, `padding`, `flex`, `top`, `left`, `gap` re-run Yoga on every frame for that node *and its siblings*.
99- **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 `width` keeps the corner radius that `scaleX` would smear.
100- **Never `scale(0)`.** Start from `scale(0.9–0.97)` + `opacity: 0`. Nothing in the real world appears from nothing.
101- **`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.
102- **Android shadows are `elevation`, and animating elevation re-renders the shadow every frame.** Animate opacity of a pre-shadowed layer instead.
103- **Never animate `BlurView` intensity.** On Android it re-renders the blur each frame. Crossfade the opacity of a static `BlurView` instead.
104- **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.
105 
106### 5. Timing or spring
107 
108**If a finger was involved, use a spring.** Springs carry velocity through an interruption; timing curves restart. Everything else uses timing.
109 
110Reanimated's spring takes Apple's two designer parameters directly — use this form, not mass/stiffness/damping:
111 
112| Interaction | Config |
113| --- | --- |
114| Default settle, no overshoot | `{ duration: 400, dampingRatio: 1 }` |
115| Reposition / snap back after a drag | `{ duration: 400, dampingRatio: 0.8, velocity }` |
116| Sheet, drawer | `{ duration: 300, dampingRatio: 0.8, velocity }` |
117| Must not pass a hard edge | add `overshootClamping: true` |
118 
119**Bounce only when the gesture carried momentum.** Overshoot on a menu that faded in feels wrong; overshoot on a card you flicked feels right.
120 
121**Easing**, for everything without a finger on it:
122 
123| Situation | Easing |
124| --- | --- |
125| Entering or exiting | `ease-out` |
126| Moving / morphing on screen | `ease-in-out` |
127| Constant motion (progress, marquee) | `linear` |
128| Default | `ease-out` |
129 
130**Never `ease-in` on UI.** It starts slow, delaying the exact moment the user is watching. Reanimated's built-ins are as weak as CSS's — use these:
131 
132```js
133import { Easing } from 'react-native-reanimated';
134 
135const EASE_OUT = Easing.bezier(0.23, 1, 0.32, 1); // strong ease-out for UI
136const EASE_IN_OUT = Easing.bezier(0.77, 0, 0.175, 1); // on-screen movement
137const EASE_SHEET = Easing.bezier(0.32, 0.72, 0, 1); // iOS sheet curve
138```
139 
140**Duration:**
141 
142| Element | Duration |
143| --- | --- |
144| Press feedback | 100–150ms |
145| Toggle, chip, small state change | 150–200ms |
146| Sheet, modal, drawer | spring, ~300ms perceived |
147| Screen transition | the platform default — don't override it |
148 
149Mobile UI animations stay under 300ms, same as web. The platform's own transitions are longer (iOS push is 350ms); match the platform for navigation, beat it everywhere else.
150 
151### 6. Keep it off the JS thread
152 
153This is the mobile-specific craft, and it's where most React Native motion dies.
154 
155- **Never `setState` from a gesture or scroll handler.** One React render per frame is the single biggest cause of jank in RN apps. Shared value → `useAnimatedStyle`, and React never re-renders at all.
156- **Never schedule back to the RN runtime inside `onUpdate` or a scroll handler.** `scheduleOnRN(fn, ...args)` from `react-native-worklets` — the Reanimated 4 replacement for the deprecated `runOnJS(fn)(...args)` — queues an RN-runtime call, and in `onUpdate` that's 60–120× per second. It belongs in `onEnd`, or in a `useAnimatedReaction` that fires when a value crosses a threshold.
157- **Never read a shared value during render** (`translateY.get()` in JSX). It's a snapshot that never updates and it silently desyncs. **Never write one during render either** — it fires mid-reconciliation, and a re-render you didn't cause replays the write. Touch shared values only in worklets, handlers, and effects.
158- **Use `.get()` / `.set()`, not `.value`.** Same API, but direct `.value` access is the form the React Compiler can't see through — the Reanimated docs call `get`/`set` the compiler-safe way. `set` also takes a functional update: `sv.set((v) => v + 1)`.
159- **Functions called from a worklet need `'worklet'`** as their first line, or they throw at runtime on device while working fine in the debugger.
160 
161### 7. Press, not hover
162 
163Every hover affordance from the web has to be redesigned, not ported.
164 
165- **Feedback on press-in, commit on press-out.** Waiting for the tap to complete before showing anything feels dead — this is the latency the user actually perceives.
166- **`scale: 0.97` in 100–150ms** on any pressable, `Pressable` + a CSS transition. `scale` takes the label and icons with it, which is what makes it read as physical.
167- **44×44pt minimum touch target** (48dp Android). If the visual is smaller, add `hitSlop` — don't grow the visual.
168- **`pressRetentionOffset`** so a finger drifting a few pixels doesn't cancel a press the user meant.
169- **Android ripple only in a Material-styled app.** In a custom-designed app, the same scale on both platforms is more coherent than a ripple on one.
170 
171### 8. Haptics
172 
173Mobile has a sense the web doesn't. Use it sparingly and it becomes the thing that makes the app feel expensive; use it everywhere and users turn it off.
174 
175| Moment | Call |
176| --- | --- |
177| A value ticks past a step — picker, slider detent, segmented control | `Haptics.selectionAsync()` |
178| Something snaps home, a sheet detent catches, a drag commits | `Haptics.impactAsync(ImpactFeedbackStyle.Light)` |
179| A heavy object lands, a destructive action fires | `Haptics.impactAsync(ImpactFeedbackStyle.Medium)` |
180| Operation succeeded or failed | `Haptics.notificationAsync(NotificationFeedbackType.Success / Error)` |
181 
182Three rules, and they're absolute:
183 
184- **Same frame as the visual.** A haptic that lags its animation reads as a glitch, not as feedback. Fire it at the causal moment — the detent catching — not when the animation finishes.
185- **One per user action.** Never on scroll, never per frame, never on an entrance animation the user didn't cause.
186- **Never the only feedback.** Haptics are off system-wide for many users, and silent on most Android hardware. The visual has to stand alone.
187 
188From a worklet, haptics must be scheduled back to the RN runtime: `scheduleOnRN(Haptics.selectionAsync)`.
189 
190### 9. Reduced motion and accessibility
191 
192```jsx
193import { useReducedMotion, ReduceMotion, withSpring } from 'react-native-reanimated';
194 
195const reduced = useReducedMotion();
196const y = useSharedValue(reduced ? 0 : SHEET_HEIGHT);
197 
198// or let each animation decide
199withSpring(0, { duration: 300, dampingRatio: 0.8, reduceMotion: ReduceMotion.System });
200```
201 
202Reduced motion means **fewer and gentler**, not zero: keep opacity and color changes that explain a state change, drop translation, scale, parallax and overshoot. Screen transitions become `animation: 'fade'`.
203 
204**Text scales.** `allowFontScaling` is on by default, so any height you measured at default type size is wrong at 200%. Never animate to a hardcoded height — measure with `onLayout`, or animate a transform instead.
205 
206## Setup that silently breaks motion
207 
208Check these first when "the animation just doesn't run":
209 
210- Install through Expo so versions match the SDK: `npx expo install react-native-reanimated react-native-worklets`. In an Expo project, `babel-preset-expo` configures the worklets Babel plugin automatically — no `babel.config.js` step. Only a bare RN project without that preset adds the plugin manually, and there it must be last in the list. A missing or misplaced plugin doesn't silently fall back anymore — it throws `Failed to create a worklet` at runtime.
211- `GestureHandlerRootView` must wrap the app, or gestures do nothing with no error.
212- Reanimated 4 requires the New Architecture.
213- **Expo Go is not a performance environment.** Judge feel in a release build; a dev build's JS thread is slow enough to hide exactly the problems you're looking for.
214 
215## 120fps
216 
217On ProMotion iPhones, third-party animations are capped at 60fps unless `CADisableMinimumFrameDurationOnPhone` is set. Recent Expo SDKs set it by default — confirm it's there, and add it if not:
218 
219```json
220{ "expo": { "ios": { "infoPlist": { "CADisableMinimumFrameDurationOnPhone": true } } } }
221```
222 
223Then the frame budget is 8ms, not 16. This is also why a UI-thread animation matters more on mobile than it does on web.
224 
225## Recipes
226 
227For ready-to-build implementations — press feedback, drag-to-dismiss sheet, swipe-to-delete, collapsing header, list entrances, keyboard-synced UI, tab indicator, screen transitions — see [RECIPES.md](RECIPES.md). Load it whenever the request matches one; start from the recipe rather than from a blank file.
228 
229## Never Ship
230 
231| Never | Instead |
232| --- | --- |
233| `PanResponder` | `Gesture.Pan()` from gesture-handler |
234| `setState` in a gesture or scroll handler | shared value + `useAnimatedStyle` |
235| `runOnJS` (deprecated in Reanimated 4) | `scheduleOnRN` from `react-native-worklets` |
236| `scheduleOnRN` per frame | `onEnd`, or `useAnimatedReaction` at a threshold |
237| Reading or writing a shared value during render | `.get()` / `.set()` in worklets, handlers, effects |
238| Core `Animated` for anything a finger touches | Reanimated |
239| Animating `height` / `width` / `margin` / `flex` / `top` | `transform` + `opacity` (absolute, childless elements exempt) |
240| Animating `BlurView` intensity or Android `elevation` | crossfade a static layer |
241| `entering` on a virtualized list row | animate the container, or `itemLayoutAnimation` |
242| A screen transition rebuilt in JS | native stack `animation` |
243| Sliding between tabs | `animation: 'none'` |
244| `Easing.in(...)` on a UI element | `Easing.bezier(0.23, 1, 0.32, 1)` |
245| `scale(0)` entrance | `scale(0.95)` + `opacity: 0` |
246| Distance-only dismissal threshold | velocity **or** distance — a flick is enough |
247| Hard stop at a boundary | rubber-band resistance |
248| A haptic per frame, or as the only feedback | one per commit, always paired with a visual |
249| Judging feel in Expo Go or the simulator | release build, slowest supported device |
250 
251## Output
252 
253Write the code. Then, in at most a few lines:
254 
255- **The gate result** — frequency tier and named purpose. Say what you rejected and why.
256- **The ingredients** — tool, properties, spring or curve + duration, thread.
257- **What to feel-check on device** — gestures, velocity handoff and haptic timing cannot be judged from code. Name what to try: flick it, interrupt it mid-flight, reverse it, run it on the slowest Android you have.
258 
259The code is the deliverable. Don't pad it into a report.
260 
261## Tone
262 
263Opinionated and brief. When the honest answer is "this shouldn't animate," or "this needs a real device before I can tell you if it's right," give it.
264 

Discussion

Alternatives

Also in Mobile appsSee all 533 in Development →