📱 iOS app UI starter. Paste the design link below into Claude Code, Rork, Lovable, or your AI app builder and ask it to start from this design. These are UI starters. Add your own backend/data logic.
Paper — Notes
Capture thoughts in colorful sticky notes with a pinned section.
#Notes #Minimal #Colorful
https://vp0.com/source/paper-notesnpx vp0 add paper-notes --target react-nativeOr skip the paste
Install the free VP0 MCP once and your AI builder can search and import any design by name, with no link to copy and no API key.
claude mcp add vp0 -- npx -y vp0-mcp{
"mcpServers": {
"vp0": { "command": "npx", "args": ["-y", "vp0-mcp"] }
}
}Use with AI
Recreate this iOS app design in my Expo React Native project. Fetch the full source, dependencies, and step-by-step integration instructions from https://vp0.com/source/paper-notes (machine-readable JSON manifest: https://api.vp0.com/designs/paper-notes/manifest). Design: "Paper — Notes" — Capture thoughts in colorful sticky notes with a pinned section.. Match the layout and styling exactly; it's an iOS UI starter, so add my own data/logic afterward.
This is an iOS app UI starter for Expo React Native ("Paper — Notes").
Integrate it into the user's Expo project as follows:
1. No extra dependencies are required.
2. Create the following file(s) and paste each provided "content" exactly:
- App.tsx
3. Render the exported component from a screen (e.g. app/(tabs)/index.tsx). It targets iOS — keep SafeAreaView / safe-area insets and the existing styling.
4. These are UI starters: reproduce the visual layout faithfully, then wire the user's own data/navigation/backend afterward.Preview

Code · 1 file
React Nativeimport React from 'react';
import { View, Text, ScrollView, StyleSheet, SafeAreaView } from 'react-native';
const NOTES = [
{ title: 'Trip packing', body: 'Passport, charger, sunscreen, the good headphones', c: '#FBBF24', pin: true },
{ title: 'Book ideas', body: 'A novel told entirely through margin notes', c: '#F472B6', pin: true },
{ title: 'Groceries', body: 'Oat milk, eggs, basil, lemons, dark chocolate', c: '#34D399' },
{ title: 'Standup', body: 'Shipped auth, blocked on design review', c: '#60A5FA' },
{ title: 'Quote', body: 'Make it work, make it right, make it fast', c: '#A78BFA' },
];
export default function App() {
return (
<SafeAreaView style={s.safe}>
<ScrollView contentContainerStyle={s.scroll} showsVerticalScrollIndicator={false}>
<Text style={s.h1}>Notes</Text>
<Text style={s.sub}>5 notes · 2 pinned</Text>
<View style={s.grid}>
{NOTES.map((n, i) => (
<View key={i} style={[s.note, { backgroundColor: n.c + '1F', borderColor: n.c + '55' }]}>
{n.pin && <Text style={s.pin}>📌</Text>}
<Text style={[s.noteTitle, { color: n.c }]}>{n.title}</Text>
<Text style={s.noteBody}>{n.body}</Text>
</View>
))}
</View>
</ScrollView>
</SafeAreaView>
);
}
const s = StyleSheet.create({
safe: { flex: 1, backgroundColor: '#0C0C0E' },
scroll: { padding: 22, paddingTop: 60 },
h1: { color: '#fff', fontSize: 34, fontWeight: '800' },
sub: { color: '#8A8A96', fontSize: 15, marginTop: 4, marginBottom: 22 },
grid: { flexDirection: 'row', flexWrap: 'wrap', justifyContent: 'space-between' },
note: { width: '48%', borderRadius: 18, borderWidth: 1, padding: 16, marginBottom: 16, minHeight: 120 },
pin: { position: 'absolute', top: 12, right: 12, fontSize: 14 },
noteTitle: { fontSize: 16, fontWeight: '800', marginBottom: 8 },
noteBody: { color: '#C8C8D0', fontSize: 14, lineHeight: 20 },
});
Machine endpoints
- Manifest (JSON):/designs/paper-notes/manifest
- Registry alias:/r/paper-notes.json
- File tree:/designs/paper-notes/files
- Download bundle (.zip):/designs/paper-notes/bundle.zip
- Bundle JSON Schema:/schema/vp0-bundle.v1.json
- Registry index (all designs):/registry.json
Open, CORS-enabled, no key. React Native is the default target; append ?target=swiftui where SwiftUI is available.