📱 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.
Roam — Trip Planner
A day-by-day travel itinerary with a trip header and timeline.
#Travel #Colorful #Planner
https://vp0.com/source/roam-travelnpx vp0 add roam-travel --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/roam-travel (machine-readable JSON manifest: https://api.vp0.com/designs/roam-travel/manifest). Design: "Roam — Trip Planner" — A day-by-day travel itinerary with a trip header and timeline.. 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 ("Roam — Trip Planner").
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 PLAN = [
{ time: '09:00', title: 'Sagrada Família', note: 'Pre-booked tickets', icon: '⛪' },
{ time: '12:30', title: 'Lunch at La Boqueria', note: 'Tapas + market walk', icon: '🥘' },
{ time: '15:00', title: 'Park Güell', note: 'Golden hour photos', icon: '🌅' },
{ time: '20:00', title: 'Dinner in El Born', note: 'Reservation at 8', icon: '🍷' },
];
export default function App() {
return (
<SafeAreaView style={s.safe}>
<ScrollView contentContainerStyle={s.scroll} showsVerticalScrollIndicator={false}>
<View style={s.hero}>
<Text style={s.heroEmoji}>🇪🇸</Text>
<Text style={s.heroTitle}>Barcelona</Text>
<Text style={s.heroSub}>May 18 to 22 · Day 2 of 5</Text>
</View>
<Text style={s.section}>Today</Text>
{PLAN.map((p, i) => (
<View key={i} style={s.row}>
<View style={s.timeCol}>
<Text style={s.time}>{p.time}</Text>
{i < PLAN.length - 1 && <View style={s.line} />}
</View>
<View style={s.card}>
<Text style={s.cardIcon}>{p.icon}</Text>
<View style={{ flex: 1 }}>
<Text style={s.cardTitle}>{p.title}</Text>
<Text style={s.cardNote}>{p.note}</Text>
</View>
</View>
</View>
))}
</ScrollView>
</SafeAreaView>
);
}
const s = StyleSheet.create({
safe: { flex: 1, backgroundColor: '#051018' },
scroll: { padding: 22, paddingTop: 60 },
hero: { backgroundColor: '#08263A', borderRadius: 24, padding: 26, marginBottom: 24 },
heroEmoji: { fontSize: 44 },
heroTitle: { color: '#fff', fontSize: 34, fontWeight: '800', marginTop: 10 },
heroSub: { color: '#6FB8E0', fontSize: 15, marginTop: 6 },
section: { color: '#fff', fontSize: 18, fontWeight: '700', marginBottom: 16 },
row: { flexDirection: 'row' },
timeCol: { width: 58, alignItems: 'center' },
time: { color: '#0EA5E9', fontSize: 13, fontWeight: '700' },
line: { width: 2, flex: 1, backgroundColor: '#123349', marginTop: 6, marginBottom: -6 },
card: { flex: 1, flexDirection: 'row', alignItems: 'center', backgroundColor: '#0A1C28', borderRadius: 16, padding: 16, marginBottom: 16 },
cardIcon: { fontSize: 26, marginRight: 14 },
cardTitle: { color: '#fff', fontSize: 16, fontWeight: '700' },
cardNote: { color: '#6FA0BC', fontSize: 14, marginTop: 3 },
});
Machine endpoints
- Manifest (JSON):/designs/roam-travel/manifest
- Registry alias:/r/roam-travel.json
- File tree:/designs/roam-travel/files
- Download bundle (.zip):/designs/roam-travel/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.