react-native
Installation
SKILL.md
React Native Mobile Development
Expert guidance for building production-ready React Native applications. Covers architecture decisions, performance optimization, navigation, state management, and native integration.
Project Setup and Workflow Selection
BAD: Starting with bare workflow without justification
npx react-native init MyApp
# Adds unnecessary native complexity from day one
# Requires Xcode/Android Studio setup immediately
GOOD: Start with Expo, eject only when needed
npx create-expo-app@latest MyApp --template blank-typescript
cd MyApp