{"$schema":"https://api.vp0.com/schema/vp0-bundle.v1.json","schemaVersion":"vp0-bundle.v1","id":"vp0.sprout-plant-care","title":"Sprout — Plant Care","type":"registry:block","version":"1.0.0","author":"@vp0","categories":["Lifestyle"],"styleTags":["Nature","Green"],"category":"Lifestyle","registryDependencies":[],"docs":"This is an iOS app UI starter built with React Native. Paste the design link into your AI app builder (Claude Code, Rork, Lovable) and ask it to start from this design. Add your own backend/data logic. These are UI starters.","license":null,"kind":"app_template","createdAt":"2026-05-25T19:40:49.130Z","updatedAt":"2026-05-25T19:40:49.130Z","installHints":{"defaultTarget":"react-native","mcp":"claude mcp add vp0 -- npx -y vp0-mcp","shadcn":"npx shadcn@latest add https://api.vp0.com/r/sprout-plant-care.json","cli":"npx vp0com add sprout-plant-care --target react-native","openInV0":"https://v0.dev/chat/api/open?url=https://api.vp0.com/r/sprout-plant-care.json","downloadExpo":"https://api.vp0.com/export/sprout-plant-care/expo.zip"},"sourceHash":"sha256:15f3bcca2eeb8ce9d1d12ae96f4ea5671f4507e5023b3f15cc13797fb184ded8","meta":{"com.vp0.contentId":"ece6962f-b776-4dfc-b782-ef220de9c478","com.vp0.platform":"ios","com.vp0.availableLanguages":["react-native"],"com.vp0.defaultLanguage":"react-native","com.vp0.contentType":"template","com.vp0.kind":"app_template","com.vp0.category":"Lifestyle","com.vp0.sourceToken":"vp0_9a158ecf13d1e4ed85f8d4e0","com.vp0.sourceHash":"sha256:15f3bcca2eeb8ce9d1d12ae96f4ea5671f4507e5023b3f15cc13797fb184ded8","com.vp0.simulator":{"target":"react-native","entrypoint":"App.tsx","simulatable":true,"buildStatus":null,"embedUrl":null,"provider":null}},"name":"sprout-plant-care","slug":"sprout-plant-care","sourceToken":"vp0_9a158ecf13d1e4ed85f8d4e0","contentType":"template","platform":"ios","description":"Keep your plants happy with watering schedules and care reminders.","createdBy":"vp0","tags":["Lifestyle","Nature","Green"],"availableLanguages":["react-native"],"defaultLanguage":"react-native","targets":[{"name":"react-native","entrypoint":"App.tsx"}],"files":[{"language":"react-native","path":"App.tsx","type":"registry:page","target":"app/App.tsx","rawUrl":"https://api.vp0.com/designs/sprout-plant-care/raw?language=react-native&path=App.tsx","content":"import React, { useState } from 'react';\nimport { View, Text, ScrollView, Pressable, StyleSheet, SafeAreaView } from 'react-native';\n\nconst PLANTS = [\n  { name: 'Monstera', icon: '🌿', days: 0, light: 'Bright indirect' },\n  { name: 'Snake plant', icon: '🪴', days: 4, light: 'Low light' },\n  { name: 'Fiddle fig', icon: '🌳', days: 1, light: 'Bright' },\n  { name: 'Pothos', icon: '🍃', days: 2, light: 'Medium' },\n];\n\nexport default function App() {\n  const [watered, setWatered] = useState<Record<string, boolean>>({});\n  return (\n    <SafeAreaView style={s.safe}>\n      <ScrollView contentContainerStyle={s.scroll} showsVerticalScrollIndicator={false}>\n        <Text style={s.kicker}>YOUR JUNGLE</Text>\n        <Text style={s.h1}>4 plants</Text>\n        <Text style={s.sub}>1 needs water today</Text>\n        {PLANTS.map((p) => {\n          const done = watered[p.name] || p.days > 0;\n          return (\n            <View key={p.name} style={s.card}>\n              <View style={s.thumb}><Text style={{ fontSize: 34 }}>{p.icon}</Text></View>\n              <View style={{ flex: 1, marginLeft: 16 }}>\n                <Text style={s.name}>{p.name}</Text>\n                <Text style={s.light}>☀️ {p.light}</Text>\n                <Text style={[s.due, { color: done ? '#5CCB6A' : '#FFB020' }]}>{done ? (p.days > 0 ? 'In ' + p.days + ' days' : 'Watered') : 'Water today'}</Text>\n              </View>\n              {p.days === 0 && (\n                <Pressable onPress={() => setWatered((w) => ({ ...w, [p.name]: true }))} style={[s.btn, watered[p.name] && s.btnDone]}>\n                  <Text style={s.btnText}>{watered[p.name] ? '✓' : '💧'}</Text>\n                </Pressable>\n              )}\n            </View>\n          );\n        })}\n      </ScrollView>\n    </SafeAreaView>\n  );\n}\n\nconst s = StyleSheet.create({\n  safe: { flex: 1, backgroundColor: '#08120A' },\n  scroll: { padding: 22, paddingTop: 60 },\n  kicker: { color: '#5CCB6A', fontSize: 12, fontWeight: '700', letterSpacing: 2 },\n  h1: { color: '#fff', fontSize: 32, fontWeight: '800', marginTop: 4 },\n  sub: { color: '#7DA886', fontSize: 15, marginTop: 2, marginBottom: 20 },\n  card: { flexDirection: 'row', alignItems: 'center', backgroundColor: '#0E1C11', borderRadius: 20, padding: 16, marginBottom: 14 },\n  thumb: { width: 64, height: 64, borderRadius: 18, backgroundColor: '#122516', alignItems: 'center', justifyContent: 'center' },\n  name: { color: '#EAF6EC', fontSize: 17, fontWeight: '700' },\n  light: { color: '#7DA886', fontSize: 13, marginTop: 4 },\n  due: { fontSize: 13, fontWeight: '700', marginTop: 4 },\n  btn: { width: 48, height: 48, borderRadius: 24, backgroundColor: '#12331A', alignItems: 'center', justifyContent: 'center', borderWidth: 1, borderColor: '#1E4D29' },\n  btnDone: { backgroundColor: '#5CCB6A', borderColor: '#5CCB6A' },\n  btnText: { fontSize: 20, color: '#fff' },\n});\n"}],"assets":[{"kind":"cover","url":"https://storage.vp0.com/vp0/covers/ece6962f-b776-4dfc-b782-ef220de9c478/42b3eaf9-c5ca-4ffe-8c9d-2c00932428f6/full.webp","width":1206,"height":2622,"lqip":"BegBAwBerwenhYdjj6xhN/c=","variants":{"avif":"https://storage.vp0.com/vp0/covers/ece6962f-b776-4dfc-b782-ef220de9c478/42b3eaf9-c5ca-4ffe-8c9d-2c00932428f6/avif.avif","card":"https://storage.vp0.com/vp0/covers/ece6962f-b776-4dfc-b782-ef220de9c478/42b3eaf9-c5ca-4ffe-8c9d-2c00932428f6/card.webp","full":"https://storage.vp0.com/vp0/covers/ece6962f-b776-4dfc-b782-ef220de9c478/42b3eaf9-c5ca-4ffe-8c9d-2c00932428f6/full.webp","thumb":"https://storage.vp0.com/vp0/covers/ece6962f-b776-4dfc-b782-ef220de9c478/42b3eaf9-c5ca-4ffe-8c9d-2c00932428f6/thumb.webp","light_avif":"https://storage.vp0.com/vp0/covers/ece6962f-b776-4dfc-b782-ef220de9c478/6bd63c50-7e0a-4faa-a073-1d93038d19a2/avif.avif","light_card":"https://storage.vp0.com/vp0/covers/ece6962f-b776-4dfc-b782-ef220de9c478/6bd63c50-7e0a-4faa-a073-1d93038d19a2/card.webp","light_full":"https://storage.vp0.com/vp0/covers/ece6962f-b776-4dfc-b782-ef220de9c478/6bd63c50-7e0a-4faa-a073-1d93038d19a2/full.webp","light_thumb":"https://storage.vp0.com/vp0/covers/ece6962f-b776-4dfc-b782-ef220de9c478/6bd63c50-7e0a-4faa-a073-1d93038d19a2/thumb.webp"}},{"kind":"video","url":"https://storage.vp0.com/vp0/clips/14/a12a102e-8576-4096-a4f9-673687363b3f/clip.mp4","variants":{"mp4":"https://storage.vp0.com/vp0/clips/14/a12a102e-8576-4096-a4f9-673687363b3f/clip.mp4","webm":"https://storage.vp0.com/vp0/clips/14/a12a102e-8576-4096-a4f9-673687363b3f/clip.webm","poster":"https://storage.vp0.com/vp0/clips/14/a12a102e-8576-4096-a4f9-673687363b3f/poster.jpg"}}],"screens":[],"dependencies":{},"devDependencies":{},"componentsUsed":[],"notes":"This is an iOS app UI starter built with React Native. Paste the design link into your AI app builder (Claude Code, Rork, Lovable) and ask it to start from this design. Add your own backend/data logic. These are UI starters.","importUrl":"https://vp0.com/source/sprout-plant-care","manifestUrl":"https://api.vp0.com/designs/sprout-plant-care/manifest","installCommand":null,"aiInstructions":"This is an iOS app UI starter for Expo React Native (\"Sprout — Plant Care\").\nIntegrate it into the user's Expo project as follows:\n1. No extra dependencies are required.\n2. Create the following file(s) and paste each provided \"content\" exactly:\n   - App.tsx\n3. 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.\n4. These are UI starters: reproduce the visual layout faithfully, then wire the user's own data/navigation/backend afterward.","promptText":"Build this iOS app design in my project: \"Sprout — Plant Care\" — Keep your plants happy with watering schedules and care reminders..\n1. Fetch https://api.vp0.com/designs/sprout-plant-care/manifest — a JSON manifest whose files[] array contains EVERY source file inline (path + content).\n2. 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.\n3. Install dependencies exactly as given by the manifest's installCommand field (skip if null).\n4. Render the entry component (targets[].entrypoint) from a screen. Keep SafeAreaView / safe-area insets and the existing styling untouched.\n5. It is a UI starter: once it renders pixel-perfect, wire my own data, navigation and backend on top.\nHuman-readable source page: https://vp0.com/source/sprout-plant-care"}