mobile-development

Mobile development patterns for React Native and Flutter including navigation, state management, and responsive design

Content Preview
---
name: mobile-development
description: Mobile development patterns for React Native and Flutter including navigation, state management, and responsive design
---

# Mobile Development

## React Native Component Structure

```tsx
import { View, Text, FlatList, StyleSheet, Platform } from "react-native";
import { SafeAreaView } from "react-native-safe-area-context";

interface Product {
  id: string;
  name: string;
  price: number;
  image: string;
}

function ProductList({ products }: { produ
How to Use

Recommended: Install to project (local)

mkdir -p .claude/skills
curl -o .claude/skills/mobile-development.md \
  https://raw.githubusercontent.com/rohitg00/awesome-claude-code-toolkit/main/skills/mobile-development/SKILL.md

Skill is scoped to this project only. Add .claude/skills/ to your .gitignoreif you don't want to commit it.

Alternative: Clone full repo

git clone https://github.com/rohitg00/awesome-claude-code-toolkit

Then reference at skills/mobile-development/SKILL.md

Related Skills