react-native
Installation
SKILL.md
When to Use
- Creating or modifying React Native components
- Implementing navigation flows
- Handling platform-specific code (iOS/Android)
- Working with native modules
- Optimizing mobile performance
Critical Patterns
Component Structure
// Functional components with hooks (preferred)
import { View, Text, StyleSheet } from 'react-native';
export function MyComponent({ title, onPress }) {
Related skills