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.

    Sprout — Plant Care

    templateiosby @vp0

    Keep your plants happy with watering schedules and care reminders.

    #Lifestyle #Nature #Green

    Works withClaude CodeCursorRorkLovablev0& any AI coding agent
    https://vp0.com/source/sprout-plant-care
    npx vp0com add sprout-plant-care --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: "Sprout — Plant Care" — Keep your plants happy with watering schedules and care reminders.. 1. Fetch https://api.vp0.com/designs/sprout-plant-care/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/sprout-plant-care

    Integration steps
    This is an iOS app UI starter for Expo React Native ("Sprout — Plant Care").
    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

    Sprout — Plant Care preview 1

    Code · 1 file

    React Native
    Download .zip
    App.tsx
    raw
    import React, { useState } from 'react';
    import { View, Text, ScrollView, Pressable, StyleSheet, SafeAreaView } from 'react-native';
    
    const PLANTS = [
      { name: 'Monstera', icon: '🌿', days: 0, light: 'Bright indirect' },
      { name: 'Snake plant', icon: '🪴', days: 4, light: 'Low light' },
      { name: 'Fiddle fig', icon: '🌳', days: 1, light: 'Bright' },
      { name: 'Pothos', icon: '🍃', days: 2, light: 'Medium' },
    ];
    
    export default function App() {
      const [watered, setWatered] = useState<Record<string, boolean>>({});
      return (
        <SafeAreaView style={s.safe}>
          <ScrollView contentContainerStyle={s.scroll} showsVerticalScrollIndicator={false}>
            <Text style={s.kicker}>YOUR JUNGLE</Text>
            <Text style={s.h1}>4 plants</Text>
            <Text style={s.sub}>1 needs water today</Text>
            {PLANTS.map((p) => {
              const done = watered[p.name] || p.days > 0;
              return (
                <View key={p.name} style={s.card}>
                  <View style={s.thumb}><Text style={{ fontSize: 34 }}>{p.icon}</Text></View>
                  <View style={{ flex: 1, marginLeft: 16 }}>
                    <Text style={s.name}>{p.name}</Text>
                    <Text style={s.light}>☀️ {p.light}</Text>
                    <Text style={[s.due, { color: done ? '#5CCB6A' : '#FFB020' }]}>{done ? (p.days > 0 ? 'In ' + p.days + ' days' : 'Watered') : 'Water today'}</Text>
                  </View>
                  {p.days === 0 && (
                    <Pressable onPress={() => setWatered((w) => ({ ...w, [p.name]: true }))} style={[s.btn, watered[p.name] && s.btnDone]}>
                      <Text style={s.btnText}>{watered[p.name] ? '✓' : '💧'}</Text>
                    </Pressable>
                  )}
                </View>
              );
            })}
          </ScrollView>
        </SafeAreaView>
      );
    }
    
    const s = StyleSheet.create({
      safe: { flex: 1, backgroundColor: '#08120A' },
      scroll: { padding: 22, paddingTop: 60 },
      kicker: { color: '#5CCB6A', fontSize: 12, fontWeight: '700', letterSpacing: 2 },
      h1: { color: '#fff', fontSize: 32, fontWeight: '800', marginTop: 4 },
      sub: { color: '#7DA886', fontSize: 15, marginTop: 2, marginBottom: 20 },
      card: { flexDirection: 'row', alignItems: 'center', backgroundColor: '#0E1C11', borderRadius: 20, padding: 16, marginBottom: 14 },
      thumb: { width: 64, height: 64, borderRadius: 18, backgroundColor: '#122516', alignItems: 'center', justifyContent: 'center' },
      name: { color: '#EAF6EC', fontSize: 17, fontWeight: '700' },
      light: { color: '#7DA886', fontSize: 13, marginTop: 4 },
      due: { fontSize: 13, fontWeight: '700', marginTop: 4 },
      btn: { width: 48, height: 48, borderRadius: 24, backgroundColor: '#12331A', alignItems: 'center', justifyContent: 'center', borderWidth: 1, borderColor: '#1E4D29' },
      btnDone: { backgroundColor: '#5CCB6A', borderColor: '#5CCB6A' },
      btnText: { fontSize: 20, color: '#fff' },
    });
    

    Machine endpoints

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