# Cursor Skills Mobile

> CURSOR-SKILLS rules for mobile (React Native, Flutter, Expo). Platform, performance, tests.

- Skill: `agent-kit-startup/cursor-skills-mobile` (Agent Skill)
- Install (CLI): `npx skillmds@latest add agent-kit-startup/cursor-skills-mobile`
- Raw SKILL.md: https://api.skillmd.com/api/skills/agent-kit-startup/cursor-skills-mobile/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Web & Frontend
- Author: agent-kit-startup (https://skillmd.com/u/agent-kit-startup)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/agent-kit-startup/cursor-skills-mobile

---


# CURSOR-SKILLS - Mobile

Source: [cursor-skills/mobile](https://github.com/araguaci/cursor-skills/tree/main/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.flutterSdkPath` if needed; Flutter tests.
- **Expo**: expo-cli / expo-dev-client; Expo APIs and components; `expo.toolsPath` if 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.

