CURSOR-SKILLS - Mobile
Source: cursor-skills/mobile
CURSOR setup
- React Native Tools, Flutter, Dart, Expo Tools; on native projects: Android Studio / Xcode per stack.
Typical structure
project/
├── src/ ├── tests/ ├── assets/ ├── android/ ├── ios/
└── .env
By framework
- React Native: components, navigation, native APIs; ESLint; performance (lists, memo, lazy).
- Flutter: widgets, state management;
dart.flutterSdkPathif needed; Flutter tests. - Expo: expo-cli / expo-dev-client; Expo APIs and components;
expo.toolsPathif needed.
Platform
- iOS/Android differences; platform-specific code when needed; responsive design; each OS guidelines.
Performance and quality
- Optimize images and assets; rendering and memory; Prettier, ESLint; tests (unit, integration, E2E); coverage ≥ 80%.
Security
- Validate inputs; auth; sensitive data; HTTPS; OWASP mobile.