{"id":"vp0.vault-wallet","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.","kind":"app_template","meta":{"com.vp0.kind":"app_template","com.vp0.category":"Finance","com.vp0.platform":"ios","com.vp0.contentId":"d8a48361-8f28-4d47-951b-26a42a7a1ec6","com.vp0.simulator":{"target":"react-native","embedUrl":null,"provider":null,"entrypoint":"App.tsx","buildStatus":null,"simulatable":true},"com.vp0.sourceHash":"sha256:0ae360c519a8530f739e147577ed9f62e224d5b12d36815b832514c5854e71ac","com.vp0.contentType":"template","com.vp0.sourceToken":"vp0_04c4831a8e9eba34445f228f","com.vp0.defaultLanguage":"react-native","com.vp0.availableLanguages":["react-native","swiftui"]},"name":"vault-wallet","slug":"vault-wallet","tags":["Dark","Finance","Fintech"],"type":"registry:block","files":[{"path":"App.tsx","type":"registry:page","rawUrl":"https://api.vp0.com/designs/vault-wallet/raw?language=react-native&path=App.tsx","target":"app/App.tsx","content":"import React from 'react';\nimport { View, Text, ScrollView, StyleSheet, SafeAreaView } from 'react-native';\n\nconst TX = [\n  { id: 1, name: 'Spotify', sub: 'Subscriptions', amt: -11.99, icon: '🎧' },\n  { id: 2, name: 'Salary', sub: 'Acme Inc', amt: 4200.0, icon: '💼' },\n  { id: 3, name: 'Whole Foods', sub: 'Groceries', amt: -86.4, icon: '🛒' },\n  { id: 4, name: 'Uber', sub: 'Transport', amt: -18.2, icon: '🚕' },\n  { id: 5, name: 'Refund', sub: 'Amazon', amt: 32.5, icon: '📦' },\n];\nconst fmt = (n) => (n < 0 ? '-' : '+') + '$' + Math.abs(n).toFixed(2);\n\nexport default function App() {\n  return (\n    <SafeAreaView style={s.safe}>\n      <ScrollView contentContainerStyle={s.scroll} showsVerticalScrollIndicator={false}>\n        <Text style={s.hi}>Good afternoon, Maya</Text>\n        <View style={s.card}>\n          <Text style={s.cardLabel}>Total balance</Text>\n          <Text style={s.balance}>$12,480.55</Text>\n          <View style={s.cardRow}>\n            <Text style={s.cardNum}>•••• 4921</Text>\n            <Text style={s.cardChange}>+2.4% this month</Text>\n          </View>\n        </View>\n        <View style={s.actions}>\n          {[['Send', '↑'], ['Request', '↓'], ['Top up', '+'], ['More', '•••']].map(([l, i]) => (\n            <View key={l} style={s.action}>\n              <View style={s.actionBtn}><Text style={s.actionIcon}>{i}</Text></View>\n              <Text style={s.actionLabel}>{l}</Text>\n            </View>\n          ))}\n        </View>\n        <Text style={s.section}>Recent activity</Text>\n        {TX.map((t) => (\n          <View key={t.id} style={s.tx}>\n            <View style={s.txIcon}><Text style={{ fontSize: 20 }}>{t.icon}</Text></View>\n            <View style={{ flex: 1 }}>\n              <Text style={s.txName}>{t.name}</Text>\n              <Text style={s.txSub}>{t.sub}</Text>\n            </View>\n            <Text style={[s.txAmt, { color: t.amt < 0 ? '#EDEDF2' : '#22C55E' }]}>{fmt(t.amt)}</Text>\n          </View>\n        ))}\n      </ScrollView>\n    </SafeAreaView>\n  );\n}\n\nconst s = StyleSheet.create({\n  safe: { flex: 1, backgroundColor: '#0A0C0A' },\n  scroll: { padding: 22, paddingTop: 60 },\n  hi: { color: '#8A8A96', fontSize: 16, fontWeight: '500' },\n  card: { backgroundColor: '#0F1A12', borderRadius: 24, padding: 24, marginTop: 16, borderWidth: 1, borderColor: '#1B3322' },\n  cardLabel: { color: '#5FAE7A', fontSize: 13, fontWeight: '600' },\n  balance: { color: '#fff', fontSize: 42, fontWeight: '800', marginTop: 8, letterSpacing: -1 },\n  cardRow: { flexDirection: 'row', justifyContent: 'space-between', marginTop: 18 },\n  cardNum: { color: '#7FBF95', fontSize: 15, letterSpacing: 2 },\n  cardChange: { color: '#22C55E', fontSize: 14, fontWeight: '600' },\n  actions: { flexDirection: 'row', justifyContent: 'space-between', marginVertical: 26 },\n  action: { alignItems: 'center' },\n  actionBtn: { width: 58, height: 58, borderRadius: 19, backgroundColor: '#141815', alignItems: 'center', justifyContent: 'center', borderWidth: 1, borderColor: '#222' },\n  actionIcon: { color: '#22C55E', fontSize: 22, fontWeight: '700' },\n  actionLabel: { color: '#9A9AA6', fontSize: 13, marginTop: 8 },\n  section: { color: '#fff', fontSize: 18, fontWeight: '700', marginBottom: 12 },\n  tx: { flexDirection: 'row', alignItems: 'center', paddingVertical: 12 },\n  txIcon: { width: 46, height: 46, borderRadius: 14, backgroundColor: '#141815', alignItems: 'center', justifyContent: 'center', marginRight: 14 },\n  txName: { color: '#EDEDF2', fontSize: 16, fontWeight: '600' },\n  txSub: { color: '#6A6A78', fontSize: 13, marginTop: 2 },\n  txAmt: { fontSize: 16, fontWeight: '700' },\n});\n","language":"react-native"},{"path":"WalletView.swift","type":"registry:page","rawUrl":"https://api.vp0.com/designs/vault-wallet/raw?language=swiftui&path=WalletView.swift","target":"app/WalletView.swift","content":"import SwiftUI\n\nstruct Tx: Identifiable { let id = UUID(); let name: String; let sub: String; let amount: Double; let icon: String }\n\nstruct WalletView: View {\n    let transactions: [Tx] = [\n        .init(name: \"Spotify\", sub: \"Subscriptions\", amount: -11.99, icon: \"music.note\"),\n        .init(name: \"Salary\", sub: \"Acme Inc\", amount: 4200, icon: \"briefcase.fill\"),\n        .init(name: \"Whole Foods\", sub: \"Groceries\", amount: -86.4, icon: \"cart.fill\"),\n        .init(name: \"Uber\", sub: \"Transport\", amount: -18.2, icon: \"car.fill\")\n    ]\n\n    var body: some View {\n        ZStack {\n            Color(red: 0.04, green: 0.05, blue: 0.04).ignoresSafeArea()\n            ScrollView {\n                VStack(alignment: .leading, spacing: 16) {\n                    Text(\"Good afternoon, Maya\").foregroundColor(Color(white: 0.6))\n                    VStack(alignment: .leading, spacing: 8) {\n                        Text(\"Total balance\").font(.subheadline).foregroundColor(Color(red: 0.37, green: 0.68, blue: 0.48))\n                        Text(\"$12,480.55\").font(.system(size: 40, weight: .heavy)).foregroundColor(.white)\n                        HStack {\n                            Text(\"•••• 4921\").foregroundColor(Color(red: 0.5, green: 0.75, blue: 0.58))\n                            Spacer()\n                            Text(\"+2.4% this month\").foregroundColor(Color(red: 0.13, green: 0.77, blue: 0.37))\n                        }\n                    }\n                    .padding(24).background(Color(red: 0.06, green: 0.10, blue: 0.07)).cornerRadius(24)\n\n                    Text(\"Recent activity\").font(.title3).bold().foregroundColor(.white).padding(.top, 8)\n                    ForEach(transactions) { tx in\n                        HStack(spacing: 14) {\n                            Image(systemName: tx.icon).frame(width: 46, height: 46)\n                                .background(Color.white.opacity(0.05)).cornerRadius(14).foregroundColor(.white)\n                            VStack(alignment: .leading, spacing: 2) {\n                                Text(tx.name).fontWeight(.semibold).foregroundColor(.white)\n                                Text(tx.sub).font(.footnote).foregroundColor(.gray)\n                            }\n                            Spacer()\n                            Text(tx.amount < 0 ? \"-$\\(abs(tx.amount), specifier: \"%.2f\")\" : \"+$\\(tx.amount, specifier: \"%.2f\")\")\n                                .fontWeight(.semibold)\n                                .foregroundColor(tx.amount < 0 ? .white : Color(red: 0.13, green: 0.77, blue: 0.37))\n                        }\n                        .padding(.vertical, 10)\n                    }\n                }\n                .padding(22)\n            }\n        }\n    }\n}\n\n#Preview { WalletView() }\n","language":"swiftui"}],"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.","title":"Vault — Wallet","assets":[{"url":"https://storage.vp0.com/vp0/covers/d8a48361-8f28-4d47-951b-26a42a7a1ec6/baa447fc-94c4-4849-9bb3-bc699e9233f4/full.webp","kind":"cover","lqip":"BPgBAwB9nmRnh3AB+yytB2c=","width":804,"height":1748,"variants":{"avif":"https://storage.vp0.com/vp0/covers/d8a48361-8f28-4d47-951b-26a42a7a1ec6/baa447fc-94c4-4849-9bb3-bc699e9233f4/avif.avif","card":"https://storage.vp0.com/vp0/covers/d8a48361-8f28-4d47-951b-26a42a7a1ec6/baa447fc-94c4-4849-9bb3-bc699e9233f4/card.webp","full":"https://storage.vp0.com/vp0/covers/d8a48361-8f28-4d47-951b-26a42a7a1ec6/baa447fc-94c4-4849-9bb3-bc699e9233f4/full.webp","thumb":"https://storage.vp0.com/vp0/covers/d8a48361-8f28-4d47-951b-26a42a7a1ec6/baa447fc-94c4-4849-9bb3-bc699e9233f4/thumb.webp"}},{"url":"https://storage.vp0.com/vp0/clips/7/2f883e1a-c292-44e8-8b97-2cd8554596f3/clip.mp4","kind":"video","variants":{"mp4":"https://storage.vp0.com/vp0/clips/7/2f883e1a-c292-44e8-8b97-2cd8554596f3/clip.mp4","webm":"https://storage.vp0.com/vp0/clips/7/2f883e1a-c292-44e8-8b97-2cd8554596f3/clip.webm","poster":"https://storage.vp0.com/vp0/clips/7/2f883e1a-c292-44e8-8b97-2cd8554596f3/poster.jpg"}}],"author":"@vp0","$schema":"https://api.vp0.com/schema/vp0-bundle.v1.json","license":null,"targets":[{"name":"react-native","entrypoint":"App.tsx"},{"name":"swiftui","entrypoint":"WalletView.swift"}],"version":"1.0.0","category":"Finance","platform":"ios","createdAt":"2026-05-25T19:40:48.908Z","createdBy":"vp0","importUrl":"https://vp0.com/source/vault-wallet","styleTags":["Dark","Fintech"],"updatedAt":"2026-05-25T19:40:48.908Z","categories":["Finance"],"promptText":"Recreate this iOS app design in my Expo React Native project. Fetch the full source, dependencies, and step-by-step integration instructions from https://vp0.com/source/vault-wallet (machine-readable JSON manifest: https://api.vp0.com/designs/vault-wallet/manifest). Design: \"Vault — Wallet\" — A personal finance home with a balance card and recent activity.. Match the layout and styling exactly; it's an iOS UI starter, so add my own data/logic afterward.","sourceHash":"sha256:0ae360c519a8530f739e147577ed9f62e224d5b12d36815b832514c5854e71ac","contentType":"template","description":"A personal finance home with a balance card and recent activity.","manifestUrl":"https://api.vp0.com/designs/vault-wallet/manifest","sourceToken":"vp0_04c4831a8e9eba34445f228f","dependencies":{},"installHints":{"cli":"npx vp0 add vault-wallet --target react-native","mcp":"claude mcp add vp0 -- npx -y vp0-mcp","shadcn":"npx shadcn@latest add https://api.vp0.com/r/vault-wallet.json","openInV0":"https://v0.dev/chat/api/open?url=https://api.vp0.com/r/vault-wallet.json","defaultTarget":"react-native"},"schemaVersion":"vp0-bundle.v1","aiInstructions":"This is an iOS app UI starter for Expo React Native (\"Vault — Wallet\").\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\n   - WalletView.swift\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.","componentsUsed":[],"installCommand":null,"defaultLanguage":"react-native","devDependencies":{},"availableLanguages":["react-native","swiftui"],"registryDependencies":[]}