Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Senior React Native and Expo engineer for building production-ready cross-platform mobile apps. Use when building React Native components, implementing navigation with Expo Router, optimizing list and scroll performance, working with animations via Reanimated, handling platform-specific code (iOS/Android), integrating native modules, or structuring Expo projects. Triggers on React Native, Expo, mobile app, iOS app, Android app, cross-platform, native module, FlatList, FlashList, LegendList, Rean
.claude/skills/tech-leads-club-react-native-expert/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-02 | ✗→✓ | ▲ Improved | 47% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 45% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 115% | 0% |
| case-10 | ✗→✓ | ▲ Improved | 112% | 0% |
| case-13 | ✗→✓ | ▲ Improved | 77% | 0% |
Senior mobile engineer building production-ready cross-platform applications with React Native and Expo. Specializes in performance optimization, native-feeling UI, and modern React patterns for mobile.
Apply these principles before writing any code:
| Layer | Technology | Version | | ------------- | --------------------------------------------- | -------------------------------- | | Framework | React Native | 0.79+ (New Architecture default) | | Platform | Expo | SDK 53+ | | Router | Expo Router | 4+ | | Language | TypeScript | 5.5+ | | React | React 19 | React Compiler enabled | | Animation | Reanimated | 4+ | | Gestures | Gesture Handler | 2.20+ | | Lists | LegendList (primary), FlashList (alternative) | Latest | | Images | expo-image | Latest | | State | Zustand (single store) or Jotai (atomic) | 5+ / 2.10+ | | Data Fetching | TanStack Query | 5+ | | Storage | MMKV (primary), SecureStore (sensitive data) | Latest | | Navigation | Native Stack, Native Bottom Tabs | Latest | | Styling | StyleSheet.create, NativeWind (optional) | Latest |
Key architectural facts for 2026:
memo(), useCallback(), and useMemo() are rarely needed for memoization purposes, but object reference stability still matters for lists..get() and .set() on Reanimated shared values, never .value directly.getBoundingClientRect() is available for synchronous measurement (RN 0.82+).boxShadow, gap, and experimental_backgroundImage replace legacy shadow/margin/gradient patterns.Follow this sequence for every implementation:
references/project-structure.md when setting up a new projectapp/ for routes, components/ for UI, hooks/, services/, stores/references/project-structure.md for the full recommended layoutPlatform.select() or .ios.tsx/.android.tsx filesreferences/platform-handling.md for platform-specific patternsreferences/expo-router.md for navigation and routing patternstransform and opacity — never layout propertiesreferences/performance-rules.md for the full 35+ rule catalogThese rules prevent crashes and severe performance issues. Always follow them without needing to consult reference files.
Never use && with potentially falsy values — React Native crashes if a falsy value like 0 or "" is rendered outside <Text>. Use ternary with null or explicit boolean coercion:
tsx// CRASH: if count is 0, renders "0" outside <Text> { count && <Text>{count} items</Text> } // SAFE: ternary { count ? <Text>{count} items</Text> : null }
Always wrap strings in <Text> — strings as direct children of <View> crash the app.
Always use a virtualizer. LegendList is preferred. FlashList is an acceptable alternative. Never use ScrollView with .map() for dynamic lists:
tsximport { LegendList } from '@legendapp/list' ;<LegendList data={items} renderItem={({ item }) => <ItemCard item={item} />} keyExtractor={(item) => item.id} estimatedItemSize={80} />
Keep list items lightweight. No queries, no data fetching, no expensive computations inside list items. Pass pre-computed primitives as props. Fetch data in the parent.
Maintain stable object references. Do not .map() or .filter() data before passing to virtualized lists. Transform data inside list items using Zustand selectors.
Use native navigators only:
@react-navigation/native-stack or Expo Router's default <Stack> (uses native-stack)react-native-bottom-tabs or Expo Router's <NativeTabs> from expo-router/unstable-native-tabs@react-navigation/stack (JS-based) or @react-navigation/bottom-tabs when native feel matterstsx// Expo Router native tabs (SDK 53+) import { NativeTabs, Label } from 'expo-router/unstable-native-tabs' export default function TabLayout() { return ( <NativeTabs> <NativeTabs.Trigger name="index"> <Label>Home</Label> <NativeTabs.Trigger.Icon sf="house.fill" md="home" /> </NativeTabs.Trigger> </NativeTabs> ) }
Animate only transform and opacity. Never animate width, height, top, left, margin, or padding — they trigger layout recalculation on every frame.
tsx// CORRECT: GPU-accelerated useAnimatedStyle(() => ({ transform: [{ translateY: withTiming(visible ? 0 : 100) }], opacity: withTiming(visible ? 1 : 0), }))
Store state, derive visuals. Shared values should represent actual state (pressed, progress), not visual outputs (scale, opacity). Derive visuals with interpolate().
Use .get() and .set() for all Reanimated shared value access — required for React Compiler compatibility.
Always use expo-image instead of React Native's Image. It provides memory-efficient caching, blurhash placeholders, and better list performance:
tsximport { Image } from 'expo-image' ;<Image source={{ uri: url }} placeholder={{ blurhash: 'LGF5]+Yk^6#M@-5c,1J5@[or[Q6.' }} contentFit="cover" transition={200} style={styles.image} />
tsx// Use gap instead of margin between children <View style={{ gap: 8 }}> <Text>First</Text> <Text>Second</Text> </View> // Use CSS boxShadow instead of legacy shadow objects { boxShadow: '0 2px 8px rgba(0, 0, 0, 0.1)' } // Use borderCurve for smoother corners { borderRadius: 12, borderCurve: 'continuous' } // Use native gradients instead of third-party libraries { experimental_backgroundImage: 'linear-gradient(to bottom, #000, #fff)' }
setState(prev => ...)) when next state depends on current state.undefined initial state + ?? operator) for reactive defaults.<Modal presentationStyle="formSheet"> or React Navigation v7 presentation: 'formSheet' with sheetAllowedDetents. Avoid JS-based bottom sheet libraries.Pressable from react-native or react-native-gesture-handler. Never use TouchableOpacity or TouchableHighlight..map())contentInsetAdjustmentBehavior="automatic" for notchesPressable instead of Touchable componentsKeyboardAvoidingView with platform-appropriate behavior for formsDimensions API, flex, or percentage)setTimeout/waitFor for animations (use Reanimated).value on shared values (use .get()/.set())useAnimatedReaction for derivations (use useDerivedValue)TouchableOpacity or TouchableHighlight (use Pressable)@react-navigation/stack (use native-stack)Image component (use expo-image)Load detailed guidance based on context:
| Topic | Reference | Load When | | ----------------- | --------------------------------- | --------------------------------------------------------------------------------------------------- | | Performance Rules | references/performance-rules.md | Optimizing lists, animations, rendering, state management, or reviewing code for performance issues | | Expo Router | references/expo-router.md | Setting up navigation, tabs, stacks, deep linking, protected routes, or Expo Router 4+ patterns | | Project Structure | references/project-structure.md | Setting up a new project, configuring TypeScript, organizing code, or defining dependencies | | Platform Handling | references/platform-handling.md | Writing iOS/Android-specific code, SafeArea, keyboard handling, status bar, or back button | | Storage Patterns | references/storage-patterns.md | Persisting data with MMKV, Zustand persist, SecureStore, or AsyncStorage migration |
When implementing React Native features, always provide:
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-02 | fail→pass | 25,883 | 23,862 | -8% | 1 | 1 | 0% | 5,794 | 8,502 | +47% | 0 | 0 | — |
case-01 | pass→pass | 29,082 | 23,224 | -20% | 1 | 1 | 0% | 6,207 | 7,779 | +25% | 0 | 0 | — |
case-03 | fail→pass | 20,452 | 16,935 | -17% | 1 | 1 | 0% | 4,671 | 6,759 | +45% | 0 | 0 | — |
case-04 | pass→pass | 13,843 | 21,270 | +54% | 1 | 1 | 0% | 2,873 | 7,152 | +149% | 0 | 0 | — |
case-05 | pass→pass | 16,703 | 18,862 | +13% | 1 | 1 | 0% | 3,407 | 6,579 | +93% | 0 | 0 | — |
case-06 | pass→pass | 24,828 | 24,535 | -1% | 1 | 1 | 0% | 6,036 | 8,681 | +44% | 0 | 0 | — |
case-07 | pass→pass | 9,782 | 9,583 | -2% | 1 | 1 | 0% | 1,880 | 4,861 | +159% | 0 | 0 | — |
case-08 | fail→pass | 16,836 | 18,717 | +11% | 1 | 1 | 0% | 3,156 | 6,780 | +115% | 0 | 0 | — |
case-09 | pass→pass | 17,070 | 16,986 | -0% | 1 | 1 | 0% | 3,535 | 6,388 | +81% | 0 | 0 | — |
case-10 | fail→pass | 17,557 | 23,732 | +35% | 1 | 1 | 0% | 3,633 | 7,697 | +112% | 0 | 0 | — |
case-11 | pass→pass | 17,387 | 15,350 | -12% | 1 | 1 | 0% | 3,500 | 6,259 | +79% | 0 | 0 | — |
case-12 | fail→fail | 19,740 | 20,753 | +5% | 1 | 1 | 0% | 3,628 | 6,877 | +90% | 0 | 0 | — |
case-13 | fail→pass | 16,296 | 12,866 | -21% | 1 | 1 | 0% | 2,979 | 5,286 | +77% | 0 | 0 | — |
case-14 | pass→pass | 12,580 | 9,999 | -21% | 1 | 1 | 0% | 2,242 | 5,017 | +124% | 0 | 0 | — |
case-15 | fail→pass | 21,098 | 79,802 | +278% | 1 | 1 | 0% | 4,023 | 7,212 | +79% | 0 | 0 | — |
case-16 | fail→pass | 11,737 | 11,486 | -2% | 1 | 1 | 0% | 2,619 | 5,198 | +98% | 0 | 0 | — |
case-17 | fail→pass | 14,735 | 12,919 | -12% | 1 | 1 | 0% | 2,845 | 5,390 | +89% | 0 | 0 | — |
case-18 | fail→pass | 17,993 | 11,348 | -37% | 1 | 1 | 0% | 3,201 | 5,057 | +58% | 0 | 0 | — |
case-19 | fail→pass | 18,971 | 21,445 | +13% | 1 | 1 | 0% | 4,004 | 7,518 | +88% | 0 | 0 | — |
case-20 | pass→pass | 13,744 | 16,862 | +23% | 1 | 1 | 0% | 2,604 | 6,031 | +132% | 0 | 0 | — |
case-21 | pass→pass | 13,964 | 12,527 | -10% | 1 | 1 | 0% | 2,430 | 5,061 | +108% | 0 | 0 | — |
case-22 | fail→pass | 33,188 | 8,751 | -74% | 1 | 1 | 0% | 2,902 | 4,675 | +61% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted. The headline lift of +50 percentage points is the difference between those two pass rates over the 22 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.