Mobile Design System
Philosophy: Touch-first. Battery-conscious. Platform-respectful. Offline-capable.
Core Principle: Mobile is NOT a small desktop. THINK mobile constraints, ASK platform choice.
🔧 Runtime Scripts
Execute these for validation (don't read, just run):
| Script |
Purpose |
Usage |
scripts/mobile_audit.py |
Mobile UX & Touch Audit |
python3 ~/.{TOOL}/skills/mobile-design/scripts/mobile_audit.py <project_path> |
🔴 MANDATORY: Read Reference Files Before Working!
⛔ DO NOT start development until you read the relevant files:
Universal (Always Read)
| File |
Content |
Status |
| mobile-design-thinking.md |
⚠️ ANTI-MEMORIZATION: Forces thinking, prevents AI defaults |
⬜ CRITICAL FIRST |
| touch-psychology.md |
Fitts' Law, gestures, haptics, thumb zone |
⬜ CRITICAL |
| mobile-performance.md |
RN/Flutter performance, 60fps, memory |
⬜ CRITICAL |
| mobile-backend.md |
Push notifications, offline sync, mobile API |
⬜ CRITICAL |
| mobile-testing.md |
Testing pyramid, E2E, platform-specific |
⬜ CRITICAL |
| mobile-debugging.md |
Native vs JS debugging, Flipper, Logcat |
⬜ CRITICAL |
| mobile-navigation.md |
Tab/Stack/Drawer, deep linking |
⬜ Read |
| mobile-typography.md |
System fonts, Dynamic Type, a11y |
⬜ Read |
| mobile-color-system.md |
OLED, dark mode, battery-aware |
⬜ Read |
| decision-trees.md |
Framework/state/storage selection |
⬜ Read |
🧠 mobile-design-thinking.md is PRIORITY! This file ensures AI thinks instead of using memorized patterns.
Platform-Specific (Read Based on Target)
| Platform |
File |
Content |
When to Read |
| iOS |
platform-ios.md |
Human Interface Guidelines, SF Pro, SwiftUI patterns |
Building for iPhone/iPad |
| Android |
platform-android.md |
Material Design 3, Roboto, Compose patterns |
Building for Android |
| Cross-Platform |
Both above |
Platform divergence points |
React Native / Flutter |
🔴 If building for iOS → Read platform-ios.md FIRST!
🔴 If building for Android → Read platform-android.md FIRST!
🔴 If cross-platform → Read BOTH and apply conditional platform logic!
⚠️ CRITICAL: ASK BEFORE ASSUMING (MANDATORY)
STOP! If the user's request is open-ended, DO NOT default to your favorites.
You MUST Ask If Not Specified:
| Aspect |
Ask |
Why |
| Platform |
"iOS, Android, or both?" |
Affects EVERY design decision |
| Framework |
"React Native, Flutter, or native?" |
Determines patterns and tools |
| Navigation |
"Tab bar, drawer, or stack-based?" |
Core UX decision |
| State |
"What state management? (Zustand/Redux/Riverpod/BLoC?)" |
Architecture foundation |
| Offline |
"Does this need to work offline?" |
Affects data strategy |
| Target devices |
"Phone only, or tablet support?" |
Layout complexity |
⛔ AI MOBILE ANTI-PATTERNS (YASAK LİSTESİ)
🚫 These are AI default tendencies that MUST be avoided!
Performance Sins
| ❌ NEVER DO |
Why It's Wrong |
✅ ALWAYS DO |
| ScrollView for long lists |
Renders ALL items, memory explodes |
Use FlatList / FlashList / ListView.builder |
| Inline renderItem function |
New function every render, all items re-render |
useCallback + React.memo |
| Missing keyExtractor |
Index-based keys cause bugs on reorder |
Unique, stable ID from data |
| Skip getItemLayout |
Async layout = janky scroll |
Provide when items have fixed height |
| setState() everywhere |
Unnecessary widget rebuilds |
Targeted state, const constructors |
| Native driver: false |
Animations blocked by JS thread |
useNativeDriver: true always |
| console.log in production |
Blocks JS thread severely |
Remove before release build |
| Skip React.memo/const |
Every item re-renders on any change |
Memoize list items ALWAYS |
Touch/UX Sins
| ❌ NEVER DO |
Why It's Wrong |
✅ ALWAYS DO |
| Touch target < 44px |
Impossible to tap accurately, frustrating |
Minimum 44pt (iOS) / 48dp (Android) |
| Spacing < 8px between targets |
Accidental taps on neighbors |
Minimum 8-12px gap |
| Gesture-only interactions |
Motor impaired users excluded |
Always provide button alternative |
| No loading state |
User thinks app crashed |
ALWAYS show loading feedback |
| No error state |
User stuck, no recovery path |
Show error with retry option |
| No offline handling |
Crash/block when network lost |
Graceful degradation, cached data |
| Ignore platform conventions |
Users confused, muscle memory broken |
iOS feels iOS, Android feels Android |
Security Sins
| ❌ NEVER DO |
Why It's Wrong |
✅ ALWAYS DO |
| Token in AsyncStorage |
Easily accessible, stolen on rooted device |
SecureStore / Keychain / EncryptedSharedPreferences |
| Hardcode API keys |
Reverse engineered from APK/IPA |
Environment variables, secure storage |
| Skip SSL pinning |
MITM attacks possible |
Pin certificates in production |
| Log sensitive data |
Logs can be extracted |
Never log tokens, passwords, PII |
Architecture Sins
| ❌ NEVER DO |
Why It's Wrong |
✅ ALWAYS DO |
| Business logic in UI |
Untestable, unmaintainable |
Service layer separation |
| Global state for everything |
Unnecessary re-renders, complexity |
Local state default, lift when needed |
| Deep linking as afterthought |
Notifications, shares broken |
Plan deep links from day one |
| Skip dispose/cleanup |
Memory leaks, zombie listeners |
Clean up subscriptions, timers |
📱 Platform Decision Matrix
When to Unify vs Diverge
UNIFY (same on both) DIVERGE (platform-specific)
─────────────────── ──────────────────────────
Business Logic ✅ Always -
Data Layer ✅ Always -
Core Features ✅ Always -
Navigation - ✅ iOS: edge swipe, Android: back button
Gestures - ✅ Platform-native feel
Icons - ✅ SF Symbols vs Material Icons
Date Pickers - ✅ Native pickers feel right
Modals/Sheets - ✅ iOS: bottom sheet vs Android: dialog
Typography - ✅ SF Pro vs Roboto (or custom)
Error Dialogs - ✅ Platform conventions for alerts
Quick Reference: Platform Defaults
| Element |
iOS |
Android |
| Primary Font |
SF Pro / SF Compact |
Roboto |
| Min Touch Target |
44pt × 44pt |
48dp × 48dp |
| Back Navigation |
Edge swipe left |
System back button/gesture |
| Bottom Tab Icons |
SF Symbols |
Material Symbols |
| Action Sheet |
UIActionSheet from bottom |
Bottom Sheet / Dialog |
| Progress |
Spinner |
Linear progress (Material) |
| Pull to Refresh |
Native UIRefreshControl |
SwipeRefreshLayout |
🧠 Mobile UX Psychology (Quick Reference)
Fitts' Law for Touch
Desktop: Cursor is precise (1px)
Mobile: Finger is imprecise (~7mm contact area)
→ Touch targets MUST be 44-48px minimum
→ Important actions in THUMB ZONE (bottom of screen)
→ Destructive actions AWAY from easy reach
Thumb Zone (One-Handed Usage)
┌─────────────────────────────┐
│ HARD TO REACH │ ← Navigation, menu, back
│ (stretch) │
├─────────────────────────────┤
│ OK TO REACH │ ← Secondary actions
│ (natural) │
├─────────────────────────────┤
│ EASY TO REACH │ ← PRIMARY CTAs, tab bar
│ (thumb's natural arc) │ ← Main content interaction
└─────────────────────────────┘
[ HOME ]
Mobile-Specific Cognitive Load
| Desktop |
Mobile Difference |
| Multiple windows |
ONE task at a time |
| Keyboard shortcuts |
Touch gestures |
| Hover states |
NO hover (tap or nothing) |
| Large viewport |
Limited space, scroll vertical |
| Stable attention |
Interrupted constantly |
For deep dive: touch-psychology.md
⚡ Performance Principles (Quick Reference)
React Native Critical Rules
// ✅ CORRECT: Memoized renderItem + React.memo wrapper
const ListItem = React.memo(({ item }: { item: Item }) => (
<View style={styles.item}>
<Text>{item.title}</Text>
</View>
));
const renderItem = useCallback(
({ item }: { item: Item }) => <ListItem item={item} />,
[]
);
// ✅ CORRECT: FlatList with all optimizations
<FlatList
data={items}
renderItem={renderItem}
keyExtractor={(item) => item.id} // Stable ID, NOT index
getItemLayout={(data, index) => ({
length: ITEM_HEIGHT,
offset: ITEM_HEIGHT * index,
index,
})}
removeClippedSubviews={true}
maxToRenderPerBatch={10}
windowSize={5}
/>
Flutter Critical Rules
// ✅ CORRECT: const constructors prevent rebuilds
class MyWidget extends StatelessWidget {
const MyWidget({super.key}); // CONST!
@override
Widget build(BuildContext context) {
return const Column( // CONST!
children: [
Text('Static content'),
MyConstantWidget(),
],
);
}
}
// ✅ CORRECT: Targeted state with ValueListenableBuilder
ValueListenableBuilder<int>(
valueListenable: counter,
builder: (context, value, child) => Text('$value'),
child: const ExpensiveWidget(), // Won't rebuild!
)
Animation Performance
GPU-accelerated (FAST): CPU-bound (SLOW):
├── transform ├── width, height
├── opacity ├── top, left, right, bottom
└── (use these ONLY) ├── margin, padding
└── (AVOID animating these)
For complete guide: mobile-performance.md
📝 CHECKPOINT (MANDATORY Before Any Mobile Work)
Before writing ANY mobile code, you MUST complete this checkpoint:
🧠 CHECKPOINT:
Platform: [ iOS / Android / Both ]
Framework: [ React Native / Flutter / SwiftUI / Kotlin ]
Files Read: [ List the skill files you've read ]
3 Principles I Will Apply:
1. _______________
2. _______________
3. _______________
Anti-Patterns I Will Avoid:
1. _______________
2. _______________
Example:
🧠 CHECKPOINT:
Platform: iOS + Android (Cross-platform)
Framework: React Native + Expo
Files Read: touch-psychology.md, mobile-performance.md, platform-ios.md, platform-android.md
3 Principles I Will Apply:
1. FlatList with React.memo + useCallback for all lists
2. 48px touch targets, thumb zone for primary CTAs
3. Platform-specific navigation (edge swipe iOS, back button Android)
Anti-Patterns I Will Avoid:
1. ScrollView for lists → FlatList
2. Inline renderItem → Memoized
3. AsyncStorage for tokens → SecureStore
🔴 Can't fill the checkpoint? → GO BACK AND READ THE SKILL FILES.
🔧 Framework Decision Tree
WHAT ARE YOU BUILDING?
│
├── Need OTA updates + rapid iteration + web team
│ └── ✅ React Native + Expo
│
├── Need pixel-perfect custom UI + performance critical
│ └── ✅ Flutter
│
├── Deep native features + single platform focus
│ ├── iOS only → SwiftUI
│ └── Android only → Kotlin + Jetpack Compose
│
├── Existing RN codebase + new features
│ └── ✅ React Native (bare workflow)
│
└── Enterprise + existing Flutter codebase
└── ✅ Flutter
For complete decision trees: decision-trees.md
📋 Pre-Development Checklist
Before Starting ANY Mobile Project
Before Every Screen
Before Release
📚 Reference Files
For deeper guidance on specific areas:
| File |
When to Use |
| mobile-design-thinking.md |
FIRST! Anti-memorization, forces context-based thinking |
| touch-psychology.md |
Understanding touch interaction, Fitts' Law, gesture design |
| mobile-performance.md |
Optimizing RN/Flutter, 60fps, memory/battery |
| platform-ios.md |
iOS-specific design, HIG compliance |
| platform-android.md |
Android-specific design, Material Design 3 |
| mobile-navigation.md |
Navigation patterns, deep linking |
| mobile-typography.md |
Type scale, system fonts, accessibility |
| mobile-color-system.md |
OLED optimization, dark mode, battery |
| decision-trees.md |
Framework, state, storage decisions |
Remember: Mobile users are impatient, interrupted, and using imprecise fingers on small screens. Design for the WORST conditions: bad network, one hand, bright sun, low battery. If it works there, it works everywhere.
1---2name: mobile-design-43description: Mobile-first design thinking and decision-making for iOS and Android apps. Touch interaction, performance patterns, platform conventions. Teaches principles, not fixed values. Use when building React Native, Flutter, or native mobile apps.4---5
6# Mobile Design System
7
8> **Philosophy:** Touch-first. Battery-conscious. Platform-respectful. Offline-capable.
9> **Core Principle:** Mobile is NOT a small desktop. THINK mobile constraints, ASK platform choice.
10
11---
12
13## 🔧 Runtime Scripts
14
15**Execute these for validation (don't read, just run):**
16
17| Script | Purpose | Usage |
18|--------|---------|-------|
19| `scripts/mobile_audit.py` | Mobile UX & Touch Audit | `python3 ~/.{TOOL}/skills/mobile-design/scripts/mobile_audit.py <project_path>` |
20
21---
22
23## 🔴 MANDATORY: Read Reference Files Before Working!
24
25**⛔ DO NOT start development until you read the relevant files:**
26
27### Universal (Always Read)
28
29| File | Content | Status |
30|------|---------|--------|
31| **[mobile-design-thinking.md](mobile-design-thinking.md)** | **⚠️ ANTI-MEMORIZATION: Forces thinking, prevents AI defaults** | **⬜ CRITICAL FIRST** |
32| **[touch-psychology.md](touch-psychology.md)** | **Fitts' Law, gestures, haptics, thumb zone** | **⬜ CRITICAL** |
33| **[mobile-performance.md](mobile-performance.md)** | **RN/Flutter performance, 60fps, memory** | **⬜ CRITICAL** |
34| **[mobile-backend.md](mobile-backend.md)** | **Push notifications, offline sync, mobile API** | **⬜ CRITICAL** |
35| **[mobile-testing.md](mobile-testing.md)** | **Testing pyramid, E2E, platform-specific** | **⬜ CRITICAL** |
36| **[mobile-debugging.md](mobile-debugging.md)** | **Native vs JS debugging, Flipper, Logcat** | **⬜ CRITICAL** |
37| [mobile-navigation.md](mobile-navigation.md) | Tab/Stack/Drawer, deep linking | ⬜ Read |
38| [mobile-typography.md](mobile-typography.md) | System fonts, Dynamic Type, a11y | ⬜ Read |
39| [mobile-color-system.md](mobile-color-system.md) | OLED, dark mode, battery-aware | ⬜ Read |
40| [decision-trees.md](decision-trees.md) | Framework/state/storage selection | ⬜ Read |
41
42> 🧠 **mobile-design-thinking.md is PRIORITY!** This file ensures AI thinks instead of using memorized patterns.
43
44### Platform-Specific (Read Based on Target)
45
46| Platform | File | Content | When to Read |
47|----------|------|---------|--------------|
48| **iOS** | [platform-ios.md](platform-ios.md) | Human Interface Guidelines, SF Pro, SwiftUI patterns | Building for iPhone/iPad |
49| **Android** | [platform-android.md](platform-android.md) | Material Design 3, Roboto, Compose patterns | Building for Android |
50| **Cross-Platform** | Both above | Platform divergence points | React Native / Flutter |
51
52> 🔴 **If building for iOS → Read platform-ios.md FIRST!**
53> 🔴 **If building for Android → Read platform-android.md FIRST!**
54> 🔴 **If cross-platform → Read BOTH and apply conditional platform logic!**
55
56---
57
58## ⚠️ CRITICAL: ASK BEFORE ASSUMING (MANDATORY)
59
60> **STOP! If the user's request is open-ended, DO NOT default to your favorites.**
61
62### You MUST Ask If Not Specified:
63
64| Aspect | Ask | Why |
65|--------|-----|-----|
66| **Platform** | "iOS, Android, or both?" | Affects EVERY design decision |
67| **Framework** | "React Native, Flutter, or native?" | Determines patterns and tools |
68| **Navigation** | "Tab bar, drawer, or stack-based?" | Core UX decision |
69| **State** | "What state management? (Zustand/Redux/Riverpod/BLoC?)" | Architecture foundation |
70| **Offline** | "Does this need to work offline?" | Affects data strategy |
71| **Target devices** | "Phone only, or tablet support?" | Layout complexity |
72
73### ⛔ AI MOBILE ANTI-PATTERNS (YASAK LİSTESİ)
74
75> 🚫 **These are AI default tendencies that MUST be avoided!**
76
77#### Performance Sins
78
79| ❌ NEVER DO | Why It's Wrong | ✅ ALWAYS DO |
80|-------------|----------------|--------------|
81| **ScrollView for long lists** | Renders ALL items, memory explodes | Use `FlatList` / `FlashList` / `ListView.builder` |
82| **Inline renderItem function** | New function every render, all items re-render | `useCallback` + `React.memo` |
83| **Missing keyExtractor** | Index-based keys cause bugs on reorder | Unique, stable ID from data |
84| **Skip getItemLayout** | Async layout = janky scroll | Provide when items have fixed height |
85| **setState() everywhere** | Unnecessary widget rebuilds | Targeted state, `const` constructors |
86| **Native driver: false** | Animations blocked by JS thread | `useNativeDriver: true` always |
87| **console.log in production** | Blocks JS thread severely | Remove before release build |
88| **Skip React.memo/const** | Every item re-renders on any change | Memoize list items ALWAYS |
89
90#### Touch/UX Sins
91
92| ❌ NEVER DO | Why It's Wrong | ✅ ALWAYS DO |
93|-------------|----------------|--------------|
94| **Touch target < 44px** | Impossible to tap accurately, frustrating | Minimum 44pt (iOS) / 48dp (Android) |
95| **Spacing < 8px between targets** | Accidental taps on neighbors | Minimum 8-12px gap |
96| **Gesture-only interactions** | Motor impaired users excluded | Always provide button alternative |
97| **No loading state** | User thinks app crashed | ALWAYS show loading feedback |
98| **No error state** | User stuck, no recovery path | Show error with retry option |
99| **No offline handling** | Crash/block when network lost | Graceful degradation, cached data |
100| **Ignore platform conventions** | Users confused, muscle memory broken | iOS feels iOS, Android feels Android |
101
102#### Security Sins
103
104| ❌ NEVER DO | Why It's Wrong | ✅ ALWAYS DO |
105|-------------|----------------|--------------|
106| **Token in AsyncStorage** | Easily accessible, stolen on rooted device | `SecureStore` / `Keychain` / `EncryptedSharedPreferences` |
107| **Hardcode API keys** | Reverse engineered from APK/IPA | Environment variables, secure storage |
108| **Skip SSL pinning** | MITM attacks possible | Pin certificates in production |
109| **Log sensitive data** | Logs can be extracted | Never log tokens, passwords, PII |
110
111#### Architecture Sins
112
113| ❌ NEVER DO | Why It's Wrong | ✅ ALWAYS DO |
114|-------------|----------------|--------------|
115| **Business logic in UI** | Untestable, unmaintainable | Service layer separation |
116| **Global state for everything** | Unnecessary re-renders, complexity | Local state default, lift when needed |
117| **Deep linking as afterthought** | Notifications, shares broken | Plan deep links from day one |
118| **Skip dispose/cleanup** | Memory leaks, zombie listeners | Clean up subscriptions, timers |
119
120---
121
122## 📱 Platform Decision Matrix
123
124### When to Unify vs Diverge
125
126```
127 UNIFY (same on both) DIVERGE (platform-specific)
128 ─────────────────── ──────────────────────────
129Business Logic ✅ Always -
130Data Layer ✅ Always -
131Core Features ✅ Always -
132
133Navigation - ✅ iOS: edge swipe, Android: back button
134Gestures - ✅ Platform-native feel
135Icons - ✅ SF Symbols vs Material Icons
136Date Pickers - ✅ Native pickers feel right
137Modals/Sheets - ✅ iOS: bottom sheet vs Android: dialog
138Typography - ✅ SF Pro vs Roboto (or custom)
139Error Dialogs - ✅ Platform conventions for alerts
140```
141
142### Quick Reference: Platform Defaults
143
144| Element | iOS | Android |
145|---------|-----|---------|
146| **Primary Font** | SF Pro / SF Compact | Roboto |
147| **Min Touch Target** | 44pt × 44pt | 48dp × 48dp |
148| **Back Navigation** | Edge swipe left | System back button/gesture |
149| **Bottom Tab Icons** | SF Symbols | Material Symbols |
150| **Action Sheet** | UIActionSheet from bottom | Bottom Sheet / Dialog |
151| **Progress** | Spinner | Linear progress (Material) |
152| **Pull to Refresh** | Native UIRefreshControl | SwipeRefreshLayout |
153
154---
155
156## 🧠 Mobile UX Psychology (Quick Reference)
157
158### Fitts' Law for Touch
159
160```
161Desktop: Cursor is precise (1px)
162Mobile: Finger is imprecise (~7mm contact area)
163
164→ Touch targets MUST be 44-48px minimum
165→ Important actions in THUMB ZONE (bottom of screen)
166→ Destructive actions AWAY from easy reach
167```
168
169### Thumb Zone (One-Handed Usage)
170
171```
172┌─────────────────────────────┐
173│ HARD TO REACH │ ← Navigation, menu, back
174│ (stretch) │
175├─────────────────────────────┤
176│ OK TO REACH │ ← Secondary actions
177│ (natural) │
178├─────────────────────────────┤
179│ EASY TO REACH │ ← PRIMARY CTAs, tab bar
180│ (thumb's natural arc) │ ← Main content interaction
181└─────────────────────────────┘
182 [ HOME ]
183```
184
185### Mobile-Specific Cognitive Load
186
187| Desktop | Mobile Difference |
188|---------|-------------------|
189| Multiple windows | ONE task at a time |
190| Keyboard shortcuts | Touch gestures |
191| Hover states | NO hover (tap or nothing) |
192| Large viewport | Limited space, scroll vertical |
193| Stable attention | Interrupted constantly |
194
195For deep dive: [touch-psychology.md](touch-psychology.md)
196
197---
198
199## ⚡ Performance Principles (Quick Reference)
200
201### React Native Critical Rules
202
203```typescript
204// ✅ CORRECT: Memoized renderItem + React.memo wrapper
205const ListItem = React.memo(({ item }: { item: Item }) => (
206 <View style={styles.item}>
207 <Text>{item.title}</Text>
208 </View>
209));
210
211const renderItem = useCallback(
212 ({ item }: { item: Item }) => <ListItem item={item} />,
213 []
214);
215
216// ✅ CORRECT: FlatList with all optimizations
217<FlatList
218 data={items}
219 renderItem={renderItem}
220 keyExtractor={(item) => item.id} // Stable ID, NOT index
221 getItemLayout={(data, index) => ({
222 length: ITEM_HEIGHT,
223 offset: ITEM_HEIGHT * index,
224 index,
225 })}
226 removeClippedSubviews={true}
227 maxToRenderPerBatch={10}
228 windowSize={5}
229/>
230```
231
232### Flutter Critical Rules
233
234```dart
235// ✅ CORRECT: const constructors prevent rebuilds
236class MyWidget extends StatelessWidget {
237 const MyWidget({super.key}); // CONST!
238
239 @override
240 Widget build(BuildContext context) {
241 return const Column( // CONST!
242 children: [
243 Text('Static content'),
244 MyConstantWidget(),
245 ],
246 );
247 }
248}
249
250// ✅ CORRECT: Targeted state with ValueListenableBuilder
251ValueListenableBuilder<int>(
252 valueListenable: counter,
253 builder: (context, value, child) => Text('$value'),
254 child: const ExpensiveWidget(), // Won't rebuild!
255)
256```
257
258### Animation Performance
259
260```
261GPU-accelerated (FAST): CPU-bound (SLOW):
262├── transform ├── width, height
263├── opacity ├── top, left, right, bottom
264└── (use these ONLY) ├── margin, padding
265 └── (AVOID animating these)
266```
267
268For complete guide: [mobile-performance.md](mobile-performance.md)
269
270---
271
272## 📝 CHECKPOINT (MANDATORY Before Any Mobile Work)
273
274> **Before writing ANY mobile code, you MUST complete this checkpoint:**
275
276```
277🧠 CHECKPOINT:
278
279Platform: [ iOS / Android / Both ]
280Framework: [ React Native / Flutter / SwiftUI / Kotlin ]
281Files Read: [ List the skill files you've read ]
282
2833 Principles I Will Apply:
2841. _______________
2852. _______________
2863. _______________
287
288Anti-Patterns I Will Avoid:
2891. _______________
2902. _______________
291```
292
293**Example:**
294```
295🧠 CHECKPOINT:
296
297Platform: iOS + Android (Cross-platform)
298Framework: React Native + Expo
299Files Read: touch-psychology.md, mobile-performance.md, platform-ios.md, platform-android.md
300
3013 Principles I Will Apply:
3021. FlatList with React.memo + useCallback for all lists
3032. 48px touch targets, thumb zone for primary CTAs
3043. Platform-specific navigation (edge swipe iOS, back button Android)
305
306Anti-Patterns I Will Avoid:
3071. ScrollView for lists → FlatList
3082. Inline renderItem → Memoized
3093. AsyncStorage for tokens → SecureStore
310```
311
312> 🔴 **Can't fill the checkpoint? → GO BACK AND READ THE SKILL FILES.**
313
314---
315
316## 🔧 Framework Decision Tree
317
318```
319WHAT ARE YOU BUILDING?
320 │
321 ├── Need OTA updates + rapid iteration + web team
322 │ └── ✅ React Native + Expo
323 │
324 ├── Need pixel-perfect custom UI + performance critical
325 │ └── ✅ Flutter
326 │
327 ├── Deep native features + single platform focus
328 │ ├── iOS only → SwiftUI
329 │ └── Android only → Kotlin + Jetpack Compose
330 │
331 ├── Existing RN codebase + new features
332 │ └── ✅ React Native (bare workflow)
333 │
334 └── Enterprise + existing Flutter codebase
335 └── ✅ Flutter
336```
337
338For complete decision trees: [decision-trees.md](decision-trees.md)
339
340---
341
342## 📋 Pre-Development Checklist
343
344### Before Starting ANY Mobile Project
345
346- [ ] **Platform confirmed?** (iOS / Android / Both)
347- [ ] **Framework chosen?** (RN / Flutter / Native)
348- [ ] **Navigation pattern decided?** (Tabs / Stack / Drawer)
349- [ ] **State management selected?** (Zustand / Redux / Riverpod / BLoC)
350- [ ] **Offline requirements known?**
351- [ ] **Deep linking planned from day one?**
352- [ ] **Target devices defined?** (Phone / Tablet / Both)
353
354### Before Every Screen
355
356- [ ] **Touch targets ≥ 44-48px?**
357- [ ] **Primary CTA in thumb zone?**
358- [ ] **Loading state exists?**
359- [ ] **Error state with retry exists?**
360- [ ] **Offline handling considered?**
361- [ ] **Platform conventions followed?**
362
363### Before Release
364
365- [ ] **console.log removed?**
366- [ ] **SecureStore for sensitive data?**
367- [ ] **SSL pinning enabled?**
368- [ ] **Lists optimized (memo, keyExtractor)?**
369- [ ] **Memory cleanup on unmount?**
370- [ ] **Tested on low-end devices?**
371- [ ] **Accessibility labels on all interactive elements?**
372
373---
374
375## 📚 Reference Files
376
377For deeper guidance on specific areas:
378
379| File | When to Use |
380|------|-------------|
381| [mobile-design-thinking.md](mobile-design-thinking.md) | **FIRST! Anti-memorization, forces context-based thinking** |
382| [touch-psychology.md](touch-psychology.md) | Understanding touch interaction, Fitts' Law, gesture design |
383| [mobile-performance.md](mobile-performance.md) | Optimizing RN/Flutter, 60fps, memory/battery |
384| [platform-ios.md](platform-ios.md) | iOS-specific design, HIG compliance |
385| [platform-android.md](platform-android.md) | Android-specific design, Material Design 3 |
386| [mobile-navigation.md](mobile-navigation.md) | Navigation patterns, deep linking |
387| [mobile-typography.md](mobile-typography.md) | Type scale, system fonts, accessibility |
388| [mobile-color-system.md](mobile-color-system.md) | OLED optimization, dark mode, battery |
389| [decision-trees.md](decision-trees.md) | Framework, state, storage decisions |
390
391---
392
393> **Remember:** Mobile users are impatient, interrupted, and using imprecise fingers on small screens. Design for the WORST conditions: bad network, one hand, bright sun, low battery. If it works there, it works everywhere.