{"$schema":"https://api.vp0.com/schema/vp0-bundle.v1.json","schemaVersion":"vp0-bundle.v1","id":"vp0.paws-pet-care","title":"Paws — Pet Care","type":"registry:block","version":"1.0.0","author":"@vp0","categories":["Pets"],"styleTags":["Minimal","Warm"],"category":"Pets","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-25T20:17:18.432Z","updatedAt":"2026-05-25T20:17:18.432Z","installHints":{"defaultTarget":"react-native","mcp":"claude mcp add vp0 -- npx -y vp0-mcp","shadcn":"npx shadcn@latest add https://api.vp0.com/r/paws-pet-care.json","cli":"npx vp0com add paws-pet-care --target react-native","openInV0":"https://v0.dev/chat/api/open?url=https://api.vp0.com/r/paws-pet-care.json","downloadExpo":"https://api.vp0.com/export/paws-pet-care/expo.zip"},"sourceHash":"sha256:835ce53ac026492351ad04d46e243732207c43a4fe41c1d84184e93edda98d7e","meta":{"com.vp0.contentId":"b8655d8f-0e2f-46b0-a91a-919fb675e307","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":"Pets","com.vp0.sourceToken":"vp0_5fac2a91893021f0ab2d6791","com.vp0.sourceHash":"sha256:835ce53ac026492351ad04d46e243732207c43a4fe41c1d84184e93edda98d7e","com.vp0.simulator":{"target":"react-native","entrypoint":"App.tsx","simulatable":true,"buildStatus":null,"embedUrl":null,"provider":null}},"name":"paws-pet-care","slug":"paws-pet-care","sourceToken":"vp0_5fac2a91893021f0ab2d6791","contentType":"template","platform":"ios","description":"A pet profile with a daily care checklist for walks, meals, and meds.","createdBy":"vp0","tags":["Pets","Minimal","Warm"],"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/paws-pet-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 TASKS = [\n  { id: 1, name: 'Morning walk', time: '7:30 AM', icon: '🦮' },\n  { id: 2, name: 'Breakfast', time: '8:00 AM', icon: '🍖' },\n  { id: 3, name: 'Evening walk', time: '6:00 PM', icon: '🌆' },\n  { id: 4, name: 'Flea meds', time: 'Today', icon: '💊' },\n];\n\nexport default function App() {\n  const [done, setDone] = useState<Record<number, boolean>>({ 1: true, 2: true });\n  return (\n    <SafeAreaView style={s.safe}>\n      <ScrollView contentContainerStyle={s.scroll} showsVerticalScrollIndicator={false}>\n        <View style={s.profile}>\n          <View style={s.avatar}><Text style={{ fontSize: 48 }}>🐕</Text></View>\n          <Text style={s.name}>Biscuit</Text>\n          <Text style={s.breed}>Golden Retriever · 3 yrs</Text>\n        </View>\n        <View style={s.stats}>\n          <View style={s.stat}><Text style={s.statN}>2.4k</Text><Text style={s.statL}>steps</Text></View>\n          <View style={s.stat}><Text style={s.statN}>28.5</Text><Text style={s.statL}>kg</Text></View>\n          <View style={s.stat}><Text style={s.statN}>Apr 2</Text><Text style={s.statL}>next vet</Text></View>\n        </View>\n        <Text style={s.section}>Today's care</Text>\n        {TASKS.map((t) => {\n          const on = done[t.id];\n          return (\n            <Pressable key={t.id} onPress={() => setDone((d) => ({ ...d, [t.id]: !d[t.id] }))} style={s.row}>\n              <Text style={s.rowIcon}>{t.icon}</Text>\n              <View style={{ flex: 1 }}>\n                <Text style={[s.rowName, on && s.done]}>{t.name}</Text>\n                <Text style={s.rowTime}>{t.time}</Text>\n              </View>\n              <View style={[s.check, on && s.checkOn]}>{on ? <Text style={s.checkM}>✓</Text> : null}</View>\n            </Pressable>\n          );\n        })}\n      </ScrollView>\n    </SafeAreaView>\n  );\n}\n\nconst s = StyleSheet.create({\n  safe: { flex: 1, backgroundColor: '#110C07' },\n  scroll: { padding: 22, paddingTop: 56 },\n  profile: { alignItems: 'center', marginBottom: 22 },\n  avatar: { width: 96, height: 96, borderRadius: 48, backgroundColor: '#22160C', alignItems: 'center', justifyContent: 'center' },\n  name: { color: '#fff', fontSize: 26, fontWeight: '800', marginTop: 12 },\n  breed: { color: '#B08A60', fontSize: 14, marginTop: 4 },\n  stats: { flexDirection: 'row', backgroundColor: '#1A120A', borderRadius: 18, padding: 18, justifyContent: 'space-between', marginBottom: 26 },\n  stat: { alignItems: 'center', flex: 1 },\n  statN: { color: '#fff', fontSize: 20, fontWeight: '800' },\n  statL: { color: '#B08A60', fontSize: 12, marginTop: 3 },\n  section: { color: '#fff', fontSize: 18, fontWeight: '700', marginBottom: 12 },\n  row: { flexDirection: 'row', alignItems: 'center', backgroundColor: '#160F09', borderRadius: 16, padding: 16, marginBottom: 12 },\n  rowIcon: { fontSize: 26, marginRight: 14 },\n  rowName: { color: '#EDE3D6', fontSize: 16, fontWeight: '600' },\n  done: { color: '#6E5C45', textDecorationLine: 'line-through' },\n  rowTime: { color: '#B08A60', fontSize: 13, marginTop: 3 },\n  check: { width: 28, height: 28, borderRadius: 14, borderWidth: 2, borderColor: '#3A2A18', alignItems: 'center', justifyContent: 'center' },\n  checkOn: { backgroundColor: '#F59E42', borderColor: '#F59E42' },\n  checkM: { color: '#2A1A0A', fontWeight: '900' },\n});\n"}],"assets":[{"kind":"cover","url":"https://storage.vp0.com/vp0/covers/b8655d8f-0e2f-46b0-a91a-919fb675e307/2f5db9b9-dc12-4567-921c-225729c61378/full.webp","width":1206,"height":2622,"lqip":"RAgCAwA7bAI2mGWFd3qAlwY=","variants":{"avif":"https://storage.vp0.com/vp0/covers/b8655d8f-0e2f-46b0-a91a-919fb675e307/2f5db9b9-dc12-4567-921c-225729c61378/avif.avif","card":"https://storage.vp0.com/vp0/covers/b8655d8f-0e2f-46b0-a91a-919fb675e307/2f5db9b9-dc12-4567-921c-225729c61378/card.webp","full":"https://storage.vp0.com/vp0/covers/b8655d8f-0e2f-46b0-a91a-919fb675e307/2f5db9b9-dc12-4567-921c-225729c61378/full.webp","thumb":"https://storage.vp0.com/vp0/covers/b8655d8f-0e2f-46b0-a91a-919fb675e307/2f5db9b9-dc12-4567-921c-225729c61378/thumb.webp","light_avif":"https://storage.vp0.com/vp0/covers/b8655d8f-0e2f-46b0-a91a-919fb675e307/4116d9c8-7c0b-476c-aaee-4187cc033998/avif.avif","light_card":"https://storage.vp0.com/vp0/covers/b8655d8f-0e2f-46b0-a91a-919fb675e307/4116d9c8-7c0b-476c-aaee-4187cc033998/card.webp","light_full":"https://storage.vp0.com/vp0/covers/b8655d8f-0e2f-46b0-a91a-919fb675e307/4116d9c8-7c0b-476c-aaee-4187cc033998/full.webp","light_thumb":"https://storage.vp0.com/vp0/covers/b8655d8f-0e2f-46b0-a91a-919fb675e307/4116d9c8-7c0b-476c-aaee-4187cc033998/thumb.webp"}},{"kind":"video","url":"https://storage.vp0.com/vp0/clips/39/0b8d88ef-4d9a-4dc6-90d9-b4d0e871cfe1/clip.mp4","variants":{"mp4":"https://storage.vp0.com/vp0/clips/39/0b8d88ef-4d9a-4dc6-90d9-b4d0e871cfe1/clip.mp4","webm":"https://storage.vp0.com/vp0/clips/39/0b8d88ef-4d9a-4dc6-90d9-b4d0e871cfe1/clip.webm","poster":"https://storage.vp0.com/vp0/clips/39/0b8d88ef-4d9a-4dc6-90d9-b4d0e871cfe1/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/paws-pet-care","manifestUrl":"https://api.vp0.com/designs/paws-pet-care/manifest","installCommand":null,"aiInstructions":"This is an iOS app UI starter for Expo React Native (\"Paws — Pet 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: \"Paws — Pet Care\" — A pet profile with a daily care checklist for walks, meals, and meds..\n1. Fetch https://api.vp0.com/designs/paws-pet-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/paws-pet-care"}