VP0Design source for AI builders
    View design page

    📱 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

    templateiosby @vp0

    A day-by-day travel itinerary with a trip header and timeline.

    #Travel #Colorful #Planner

    Works withClaude CodeCursorRorkLovablev0& any AI coding agent
    https://vp0.com/source/roam-travel
    npx vp0com add roam-travel --target react-native
    Open in v0

    Or 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 Code
    claude mcp add vp0 -- npx -y vp0-mcp
    Cursor / Windsurf
    {
      "mcpServers": {
        "vp0": { "command": "npx", "args": ["-y", "vp0-mcp"] }
      }
    }

    Use with AI

    Prompt

    Build this iOS app design in my project: "Roam — Trip Planner" — A day-by-day travel itinerary with a trip header and timeline.. 1. Fetch https://api.vp0.com/designs/roam-travel/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/roam-travel

    Integration steps
    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

    Roam — Trip Planner preview 1

    Code · 1 file

    React Native
    Download .zip
    App.tsx
    raw
    import 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

    Open, CORS-enabled, no key. React Native is the default target; append ?target=swiftui where SwiftUI is available.