📱 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.
Tiny — Baby Tracker
Log feeds, sleep, and diapers with a calm timeline for new parents.
#Parenting #Minimal #Soft
https://vp0.com/source/tiny-baby-trackernpx vp0 add tiny-baby-tracker --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/tiny-baby-tracker (machine-readable JSON manifest: https://api.vp0.com/designs/tiny-baby-tracker/manifest). Design: "Tiny — Baby Tracker" — Log feeds, sleep, and diapers with a calm timeline for new parents.. 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 ("Tiny — Baby Tracker").
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 QUICK = [
{ label: 'Feed', icon: '🍼', c: '#86B6F6' },
{ label: 'Sleep', icon: '😴', c: '#B6A6F6' },
{ label: 'Diaper', icon: '🧷', c: '#F6C886' },
{ label: 'Note', icon: '📝', c: '#86E0C0' },
];
const LOG = [
{ time: '14:20', label: 'Feed · 120 ml', icon: '🍼' },
{ time: '12:45', label: 'Nap · 1h 10m', icon: '😴' },
{ time: '11:30', label: 'Diaper change', icon: '🧷' },
{ time: '09:15', label: 'Feed · 100 ml', icon: '🍼' },
];
export default function App() {
return (
<SafeAreaView style={s.safe}>
<ScrollView contentContainerStyle={s.scroll} showsVerticalScrollIndicator={false}>
<Text style={s.kicker}>DAY 42</Text>
<Text style={s.h1}>Hi, baby Mira</Text>
<View style={s.last}>
<Text style={s.lastLabel}>Last feed</Text>
<Text style={s.lastValue}>2h 14m ago</Text>
<Text style={s.lastSub}>Next around 16:30</Text>
</View>
<View style={s.quick}>
{QUICK.map((q) => (
<View key={q.label} style={s.qcol}>
<View style={[s.qbtn, { backgroundColor: q.c + '22', borderColor: q.c + '44' }]}><Text style={{ fontSize: 26 }}>{q.icon}</Text></View>
<Text style={s.qlabel}>{q.label}</Text>
</View>
))}
</View>
<Text style={s.section}>Today</Text>
{LOG.map((l, i) => (
<View key={i} style={s.row}>
<Text style={s.rowTime}>{l.time}</Text>
<Text style={s.rowIcon}>{l.icon}</Text>
<Text style={s.rowLabel}>{l.label}</Text>
</View>
))}
</ScrollView>
</SafeAreaView>
);
}
const s = StyleSheet.create({
safe: { flex: 1, backgroundColor: '#0A0E14' },
scroll: { padding: 22, paddingTop: 60 },
kicker: { color: '#86B6F6', fontSize: 12, fontWeight: '700', letterSpacing: 2 },
h1: { color: '#fff', fontSize: 30, fontWeight: '800', marginTop: 4 },
last: { backgroundColor: '#0F1622', borderRadius: 20, padding: 22, marginTop: 20, marginBottom: 22 },
lastLabel: { color: '#86B6F6', fontSize: 13, fontWeight: '600' },
lastValue: { color: '#fff', fontSize: 34, fontWeight: '800', marginTop: 6 },
lastSub: { color: '#7E8DA6', fontSize: 14, marginTop: 4 },
quick: { flexDirection: 'row', justifyContent: 'space-between', marginBottom: 26 },
qcol: { alignItems: 'center' },
qbtn: { width: 64, height: 64, borderRadius: 20, borderWidth: 1, alignItems: 'center', justifyContent: 'center' },
qlabel: { color: '#C3CCDC', fontSize: 13, marginTop: 8, fontWeight: '600' },
section: { color: '#fff', fontSize: 18, fontWeight: '700', marginBottom: 12 },
row: { flexDirection: 'row', alignItems: 'center', backgroundColor: '#0E1520', borderRadius: 14, padding: 14, marginBottom: 10 },
rowTime: { color: '#7E8DA6', fontSize: 14, fontWeight: '700', width: 54 },
rowIcon: { fontSize: 20, marginHorizontal: 12 },
rowLabel: { color: '#DCE3EE', fontSize: 15, fontWeight: '500' },
});
Machine endpoints
- Manifest (JSON):/designs/tiny-baby-tracker/manifest
- Registry alias:/r/tiny-baby-tracker.json
- File tree:/designs/tiny-baby-tracker/files
- Download bundle (.zip):/designs/tiny-baby-tracker/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.