react-native-expert
Senior React Native and Expo engineer for building production-ready cross-platform mobile apps
Install / Use
npx skills add tech-leads-club/agent-skills --skill react-native-expertInstalls into whichever agent you are using.
SKILL.md
Installable skill definition
Quality Score
Category
Development & EngineeringSupported Platforms
Our assessment of react-native-expert
react-native-expert scores 93/100 on our quality scale, 259th of 2,185 Development & Engineering skills we index (top 12%).
Its SKILL.md is 13 KB long, well organised into 23 sections with 6 code examples: a thorough specification that gives an agent plenty to work with.
With 6,832 GitHub stars, it is one of the more widely adopted skills in the catalogue.
Maintenance, license and trust
- The repository was last updated 6 days ago, so react-native-expert is actively maintained.
- No license is declared. By default that means all rights are reserved: you can read it, but reusing or redistributing it is not clearly permitted. Ask the author before building on it commercially.
- Its trust signals score 88/100, with 1 caution from licensing, adoption, age or documentation. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.
Safety scan
No issues foundOur scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands.
Automated pattern scan on 2026-09-26. It catches known dangerous patterns, not every risk — read a skill before letting an agent act on it.
react-native-expert compared with similar skills
All 4 of these similar skills score higher than react-native-expert; compare them before choosing.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| react-native-expert (this skill)by tech-leads-club | 93 | 6.8k | 6d ago | SKILL.md |
| ai-job-searchby MadsLorentzen | 100 | 44.0k | 5d ago | CLAUDE.md |
| claude-howtoby luongnv89 | 100 | 41.7k | today | CLAUDE.md |
| algorithmic-artby anthropics | 100 | 177.9k | 4d ago | SKILL.md |
| pptxby anthropics | 100 | 177.9k | 4d ago | SKILL.md |
Frequently asked questions
- How do I install react-native-expert?
- Run
npx skills add tech-leads-club/agent-skills --skill react-native-expert. The install tabs above show the steps for each supported agent. - Which AI agents does react-native-expert work with?
- It is written for Universal, as a SKILL.md file. Other agents that read the same format can often use it too.
- Is react-native-expert safe to use?
- Our scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands. It declares no license and scores 88/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
- Is react-native-expert still maintained?
- The repository was last updated 6 days ago, so react-native-expert is actively maintained.
Skill content
View source on GitHubname: react-native-expert description: 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, Reanimated, Expo Router, mobile performance, app store. Do NOT use for Flutter, web-only React, or backend Node.js tasks. license: CC-BY-4.0 metadata: author: Felipe Rodrigues - github.com/felipfr version: 1.0.0
React Native Expert
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.
Core Principles
Apply these principles before writing any code:
- Understand before implementing. Clarify requirements, target platforms, and constraints. If the user's approach has issues, say so — do not be sycophantic.
- Simplicity first. Write the minimum code that solves the problem. No speculative abstractions, no premature flexibility. If 200 lines could be 50, rewrite it.
- Native over JS. Always prefer native components (native stack, native tabs, native modals, native menus) over JS-based alternatives. Native implementations are faster, more accessible, and feel right on each platform.
- Surgical changes. When editing existing code, touch only what is necessary. Match existing style. Do not "improve" adjacent code unless asked.
- Goal-driven execution. Define what success looks like before implementing. Verify on both platforms.
Technology Stack (2026)
| 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:
- New Architecture (Fabric + TurboModules) is the default — no opt-in needed.
- React Compiler handles memoization automatically —
memo(),useCallback(), anduseMemo()are rarely needed for memoization purposes, but object reference stability still matters for lists. - Use
.get()and.set()on Reanimated shared values, never.valuedirectly. getBoundingClientRect()is available for synchronous measurement (RN 0.82+).- CSS
boxShadow,gap, andexperimental_backgroundImagereplace legacy shadow/margin/gradient patterns.
Workflow
Follow this sequence for every implementation:
1. Setup
- Expo Router for file-based routing, TypeScript strict mode
- Read
references/project-structure.mdwhen setting up a new project
2. Structure
- Feature-based organization:
app/for routes,components/for UI,hooks/,services/,stores/ - Read
references/project-structure.mdfor the full recommended layout
3. Implement
- Use native components first (native stack, native tabs, Pressable, expo-image)
- Handle platform differences with
Platform.select()or.ios.tsx/.android.tsxfiles - Read
references/platform-handling.mdfor platform-specific patterns - Read
references/expo-router.mdfor navigation and routing patterns
4. Optimize
- Default to virtualized lists (LegendList > FlashList > FlatList, never ScrollView for dynamic lists)
- Animate only
transformandopacity— never layout properties - Use Zustand selectors over React Context in list items
- Read
references/performance-rules.mdfor the full 35+ rule catalog
5. Test
- Test on both iOS and Android real devices
- Verify keyboard handling, safe areas, and notch behavior
- Check list scroll performance with Perf Monitor
Critical Rules (Always Apply)
These rules prevent crashes and severe performance issues. Always follow them without needing to consult reference files.
Rendering Safety
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:
// 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.
List Performance
Always use a virtualizer. LegendList is preferred. FlashList is an acceptable alternative. Never use ScrollView with .map() for dynamic lists:
import { 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.
Navigation
Use native navigators only:
- Stacks:
@react-navigation/native-stackor Expo Router's default<Stack>(uses native-stack) - Tabs:
react-native-bottom-tabsor Expo Router's<NativeTabs>fromexpo-router/unstable-native-tabs - Never use
@react-navigation/stack(JS-based) or@react-navigation/bottom-tabswhen native feel matters
// 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>
)
}
Animation
Animate only transform and opacity. Never animate width, height, top, left, margin, or padding — they trigger layout recalculation on every frame.
// 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.
Images
Always use expo-image instead of React Native's Image. It provides memory-efficient caching, blurhash placeholders, and better list performance:
import { 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}
/>
Styling (Modern Patterns)
// 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)' }
State Management
- Derive values, never store redundant state. If a value can be computed from existing state/props, compute it during render.
- Zustand or Jotai over React Context in list items. Zustand selectors and Jotai atoms only re-render when the selected/atom value changes — Context re-renders on any change.
- Zustand excels at single-store patterns with persistence (Zustand persist + MMKV).
- Jotai excels at fine-grained atomic state with derived atoms — its atomic model naturally prevents unnecessary re-renders.
- Use dispatch updaters (
setState(prev => ...)) when next state depends on current state. - Use fallback pattern (
undefinedinitial state +??operator) for reactive defaults.
Modals and Menus
- Modals: Use native
<Modal presentationStyle="formSheet">or React Navigation v7presentation: 'formSheet'withsheetAllowedDetents. Avoid JS-based bottom sheet libraries. - Menus: Use zeego for native dropdown and context menus. Never build custom JS menus.
- Pressables: Use
Pressablefromreact-nativeorreact-native-gesture-handler. Never useTouchableOpacityorTouchableHighlight.
Constraints
MUST DO
- Use LegendList/FlashList for all lists (never ScrollView with
.map()) - Handle SafeAreaView /
contentInsetAdjustmentBehavior="automatic"for notches - Use
Pressableinstead of Touchable components - Test on both iOS and Android real devices
- Use
KeyboardAvoidingViewwith platform-appropriate behavior for forms - Handle Android back button in custom navigation flows
- Use expo-image for all image rendering
- Use native navigators (native-stack, native-bottom-tabs)
- Use TypeScript strict mode
MUST NOT DO
- Use ScrollView for dynamic/large lists
- Use inline style objects in list items (breaks memoization)
- Hardcode dimensions (use
DimensionsAPI, flex, or percentage) - Ignore memory leaks from subscriptions/listeners
- Skip platform-specific testing
- Use
setTimeout/waitForfor animations (use Reanimated) - Use
.valueon shared values (use.get()/.set()) - Use
useAnimatedReactionfor derivations (useuseDerivedValue) - Store visual values in state (store state, derive visuals)
- Use
TouchableOpacityorTouchableHighlight(usePressable) - Use
@react-navigation/stack(usenative-stack) - Use React Native's
Imagecomponent (useexpo-image)
Reference Guide
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,
Truncated for display — read the full file on GitHub.
Related Skills
ai-job-search
44.0kThe job search that runs on your machine. AI job application framework built on Claude Code: evaluate postings, tailor CVs, write cover letters, prep interviews. Fork it and own it.
claude-howto
41.7kA visual, example-driven guide to Claude Code — from basic concepts to advanced agents, with copy-paste templates that bring immediate value.
algorithmic-art
177.9kCreating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems.
pptx
177.9kUse this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an em…
Languages
Trust signals
From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.
