{"$schema":"https://api.vp0.com/schema/vp0-bundle.v1.json","schemaVersion":"vp0-bundle.v1","id":"vp0.tab-split-bills","title":"Tab — Split Bills","type":"registry:block","version":"1.0.0","author":"@vp0","categories":["Finance","Social"],"styleTags":["Minimal"],"category":"Finance","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.024Z","updatedAt":"2026-05-25T19:40:49.024Z","installHints":{"defaultTarget":"react-native","mcp":"claude mcp add vp0 -- npx -y vp0-mcp","shadcn":"npx shadcn@latest add https://api.vp0.com/r/tab-split-bills.json","cli":"npx vp0com add tab-split-bills --target react-native","openInV0":"https://v0.dev/chat/api/open?url=https://api.vp0.com/r/tab-split-bills.json","downloadExpo":"https://api.vp0.com/export/tab-split-bills/expo.zip"},"sourceHash":"sha256:cfb5deb5d2126e64bc0f931d80fb23b3e7b423f222a3dc3b37a9a4931f53ca0f","meta":{"com.vp0.contentId":"cc39c677-633e-4f73-8796-02c2d1712c3a","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":"Finance","com.vp0.sourceToken":"vp0_b160549143e2dfdfb3444a08","com.vp0.sourceHash":"sha256:cfb5deb5d2126e64bc0f931d80fb23b3e7b423f222a3dc3b37a9a4931f53ca0f","com.vp0.simulator":{"target":"react-native","entrypoint":"App.tsx","simulatable":true,"buildStatus":null,"embedUrl":null,"provider":null}},"name":"tab-split-bills","slug":"tab-split-bills","sourceToken":"vp0_b160549143e2dfdfb3444a08","contentType":"template","platform":"ios","description":"Share expenses with friends and settle up without the awkward math.","createdBy":"vp0","tags":["Finance","Social","Minimal"],"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/tab-split-bills/raw?language=react-native&path=App.tsx","content":"import React from 'react';\nimport { View, Text, ScrollView, StyleSheet, SafeAreaView } from 'react-native';\n\nconst FRIENDS = [\n  { name: 'Leah', avatar: '🦊', bal: 24.5 },\n  { name: 'Marcus', avatar: '🐻', bal: -12.0 },\n  { name: 'Priya', avatar: '🦉', bal: 8.75 },\n  { name: 'Tom', avatar: '🐧', bal: -31.2 },\n];\nconst ITEMS = [\n  { name: 'Dinner at Nori', who: 'You paid', amt: 96.0, icon: '🍣' },\n  { name: 'Cab home', who: 'Marcus paid', amt: 24.0, icon: '🚕' },\n  { name: 'Groceries', who: 'You paid', amt: 52.4, icon: '🛒' },\n];\n\nexport default function App() {\n  return (\n    <SafeAreaView style={s.safe}>\n      <ScrollView contentContainerStyle={s.scroll} showsVerticalScrollIndicator={false}>\n        <Text style={s.kicker}>WEEKEND TRIP</Text>\n        <Text style={s.h1}>You are owed</Text>\n        <Text style={s.big}>$41.25</Text>\n        <View style={s.friends}>\n          {FRIENDS.map((f) => (\n            <View key={f.name} style={s.friend}>\n              <View style={s.av}><Text style={{ fontSize: 24 }}>{f.avatar}</Text></View>\n              <Text style={s.fname}>{f.name}</Text>\n              <Text style={[s.fbal, { color: f.bal < 0 ? '#FF7A7A' : '#22C55E' }]}>{(f.bal < 0 ? '-$' : '+$') + Math.abs(f.bal).toFixed(2)}</Text>\n            </View>\n          ))}\n        </View>\n        <Text style={s.section}>Recent</Text>\n        {ITEMS.map((it, i) => (\n          <View key={i} style={s.item}>\n            <View style={s.itemIcon}><Text style={{ fontSize: 20 }}>{it.icon}</Text></View>\n            <View style={{ flex: 1 }}>\n              <Text style={s.itemName}>{it.name}</Text>\n              <Text style={s.itemWho}>{it.who}</Text>\n            </View>\n            <Text style={s.itemAmt}>{'$' + it.amt.toFixed(2)}</Text>\n          </View>\n        ))}\n      </ScrollView>\n    </SafeAreaView>\n  );\n}\n\nconst s = StyleSheet.create({\n  safe: { flex: 1, backgroundColor: '#071416' },\n  scroll: { padding: 22, paddingTop: 60 },\n  kicker: { color: '#06B6D4', fontSize: 12, fontWeight: '700', letterSpacing: 2 },\n  h1: { color: '#9FE9F5', fontSize: 17, fontWeight: '600', marginTop: 8 },\n  big: { color: '#fff', fontSize: 46, fontWeight: '800', letterSpacing: -1, marginTop: 2 },\n  friends: { flexDirection: 'row', justifyContent: 'space-between', marginTop: 24 },\n  friend: { alignItems: 'center', flex: 1 },\n  av: { width: 56, height: 56, borderRadius: 28, backgroundColor: '#0E2429', alignItems: 'center', justifyContent: 'center', borderWidth: 1, borderColor: '#16363D' },\n  fname: { color: '#C9EEF3', fontSize: 13, marginTop: 8 },\n  fbal: { fontSize: 13, fontWeight: '700', marginTop: 3 },\n  section: { color: '#fff', fontSize: 18, fontWeight: '700', marginTop: 30, marginBottom: 10 },\n  item: { flexDirection: 'row', alignItems: 'center', backgroundColor: '#0C1E22', borderRadius: 16, padding: 14, marginBottom: 12 },\n  itemIcon: { width: 44, height: 44, borderRadius: 13, backgroundColor: '#0E2429', alignItems: 'center', justifyContent: 'center', marginRight: 14 },\n  itemName: { color: '#EDEDF2', fontSize: 16, fontWeight: '600' },\n  itemWho: { color: '#5E8A90', fontSize: 13, marginTop: 2 },\n  itemAmt: { color: '#EDEDF2', fontSize: 16, fontWeight: '700' },\n});\n"}],"assets":[{"kind":"cover","url":"https://storage.vp0.com/vp0/covers/cc39c677-633e-4f73-8796-02c2d1712c3a/1c87537e-8447-47a8-9e11-9aae48f25828/full.webp","width":1206,"height":2622,"lqip":"hucBAwCNzwiJh3kymXl/ifc=","variants":{"avif":"https://storage.vp0.com/vp0/covers/cc39c677-633e-4f73-8796-02c2d1712c3a/1c87537e-8447-47a8-9e11-9aae48f25828/avif.avif","card":"https://storage.vp0.com/vp0/covers/cc39c677-633e-4f73-8796-02c2d1712c3a/1c87537e-8447-47a8-9e11-9aae48f25828/card.webp","full":"https://storage.vp0.com/vp0/covers/cc39c677-633e-4f73-8796-02c2d1712c3a/1c87537e-8447-47a8-9e11-9aae48f25828/full.webp","thumb":"https://storage.vp0.com/vp0/covers/cc39c677-633e-4f73-8796-02c2d1712c3a/1c87537e-8447-47a8-9e11-9aae48f25828/thumb.webp","light_avif":"https://storage.vp0.com/vp0/covers/cc39c677-633e-4f73-8796-02c2d1712c3a/1407d334-e130-47b2-930b-f193a54e2cf3/avif.avif","light_card":"https://storage.vp0.com/vp0/covers/cc39c677-633e-4f73-8796-02c2d1712c3a/1407d334-e130-47b2-930b-f193a54e2cf3/card.webp","light_full":"https://storage.vp0.com/vp0/covers/cc39c677-633e-4f73-8796-02c2d1712c3a/1407d334-e130-47b2-930b-f193a54e2cf3/full.webp","light_thumb":"https://storage.vp0.com/vp0/covers/cc39c677-633e-4f73-8796-02c2d1712c3a/1407d334-e130-47b2-930b-f193a54e2cf3/thumb.webp"}},{"kind":"video","url":"https://storage.vp0.com/vp0/clips/11/343e26b9-270b-41bc-a505-5406a2cefcb4/clip.mp4","variants":{"mp4":"https://storage.vp0.com/vp0/clips/11/343e26b9-270b-41bc-a505-5406a2cefcb4/clip.mp4","webm":"https://storage.vp0.com/vp0/clips/11/343e26b9-270b-41bc-a505-5406a2cefcb4/clip.webm","poster":"https://storage.vp0.com/vp0/clips/11/343e26b9-270b-41bc-a505-5406a2cefcb4/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/tab-split-bills","manifestUrl":"https://api.vp0.com/designs/tab-split-bills/manifest","installCommand":null,"aiInstructions":"This is an iOS app UI starter for Expo React Native (\"Tab — Split Bills\").\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: \"Tab — Split Bills\" — Share expenses with friends and settle up without the awkward math..\n1. Fetch https://api.vp0.com/designs/tab-split-bills/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/tab-split-bills"}