📱 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.
Bloom — Wellness
A gentle daily wellness home with mood, water, breath, and an intention.
#Wellness #Dashboard #Calm
https://vp0.com/source/bloom-wellnessnpx vp0com add bloom-wellness --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
Build this iOS app design in my project: "Bloom — Wellness" — A gentle daily wellness home with mood, water, breath, and an intention.. 1. Fetch https://api.vp0.com/designs/bloom-wellness/manifest — a JSON manifest whose files[] array contains EVERY source file inline (path + content). 2. Create each file at its exact files[].path and paste its content VERBATIM. Do not re-imagine or restyle the UI — the provided code IS the design. 3. Install dependencies exactly as given by the manifest's installCommand field (skip if null). 4. Render the entry component (targets[].entrypoint) from a screen. Keep SafeAreaView / safe-area insets and the existing styling untouched. 5. It is a UI starter: once it renders pixel-perfect, wire my own data, navigation and backend on top. Human-readable source page: https://vp0.com/source/bloom-wellness
This is an iOS app UI starter for Expo React Native ("Bloom — Wellness").
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 TILES = [
{ label: 'Mood', value: 'Calm', icon: '😌', c: '#5EC9A8' },
{ label: 'Water', value: '6 / 8', icon: '💧', c: '#4FB0E0' },
{ label: 'Sleep', value: '7h 40m', icon: '🌙', c: '#7C8BFF' },
{ label: 'Breath', value: '2 sessions', icon: '🫧', c: '#9B8CFF' },
];
export default function App() {
return (
<SafeAreaView style={s.safe}>
<ScrollView contentContainerStyle={s.scroll} showsVerticalScrollIndicator={false}>
<Text style={s.kicker}>SUNDAY MORNING</Text>
<Text style={s.h1}>Take it slow</Text>
<View style={s.intention}>
<Text style={s.intentionLabel}>TODAY'S INTENTION</Text>
<Text style={s.intentionText}>Be present and kind to yourself.</Text>
</View>
<View style={s.grid}>
{TILES.map((t) => (
<View key={t.label} style={[s.tile, { borderColor: t.c + '40' }]}>
<Text style={s.tileIcon}>{t.icon}</Text>
<Text style={[s.tileValue, { color: t.c }]}>{t.value}</Text>
<Text style={s.tileLabel}>{t.label}</Text>
</View>
))}
</View>
<View style={s.cta}>
<Text style={s.ctaIcon}>🧘</Text>
<View style={{ flex: 1 }}>
<Text style={s.ctaTitle}>5-minute reset</Text>
<Text style={s.ctaSub}>A short guided breathing break</Text>
</View>
<Text style={s.ctaGo}>▶</Text>
</View>
</ScrollView>
</SafeAreaView>
);
}
const s = StyleSheet.create({
safe: { flex: 1, backgroundColor: '#08130F' },
scroll: { padding: 22, paddingTop: 60 },
kicker: { color: '#5EC9A8', fontSize: 12, fontWeight: '700', letterSpacing: 2 },
h1: { color: '#fff', fontSize: 32, fontWeight: '800', marginTop: 4 },
intention: { backgroundColor: '#0E2019', borderRadius: 20, padding: 22, marginTop: 22, borderWidth: 1, borderColor: '#163328' },
intentionLabel: { color: '#5EC9A8', fontSize: 11, fontWeight: '700', letterSpacing: 1.5 },
intentionText: { color: '#E6F4EF', fontSize: 20, fontWeight: '600', marginTop: 10, lineHeight: 27 },
grid: { flexDirection: 'row', flexWrap: 'wrap', justifyContent: 'space-between', marginTop: 22 },
tile: { width: '48%', backgroundColor: '#0D1B16', borderRadius: 18, borderWidth: 1, padding: 18, marginBottom: 14 },
tileIcon: { fontSize: 26 },
tileValue: { fontSize: 22, fontWeight: '800', marginTop: 12 },
tileLabel: { color: '#7FA89A', fontSize: 13, marginTop: 3 },
cta: { flexDirection: 'row', alignItems: 'center', backgroundColor: '#0E2019', borderRadius: 18, padding: 18, marginTop: 10 },
ctaIcon: { fontSize: 30, marginRight: 16 },
ctaTitle: { color: '#fff', fontSize: 17, fontWeight: '700' },
ctaSub: { color: '#7FA89A', fontSize: 14, marginTop: 3 },
ctaGo: { color: '#5EC9A8', fontSize: 22 },
});
Machine endpoints
- Manifest (JSON):/designs/bloom-wellness/manifest
- Registry alias:/r/bloom-wellness.json
- File tree:/designs/bloom-wellness/files
- Download bundle (.zip):/designs/bloom-wellness/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.