{"id":"vp0.satoshi-crypto","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":"Crypto","com.vp0.platform":"ios","com.vp0.contentId":"c31f4ba2-5876-44b8-9f05-93987fcf4539","com.vp0.simulator":{"target":"react-native","embedUrl":null,"provider":null,"entrypoint":"App.tsx","buildStatus":null,"simulatable":true},"com.vp0.sourceHash":"sha256:0c8b6319ba5dca43af59060fc2ee62d4a8e3533e22a44b5a6e1a84cec6257737","com.vp0.contentType":"template","com.vp0.sourceToken":"vp0_14d22764d7922f4c41142d4c","com.vp0.defaultLanguage":"react-native","com.vp0.availableLanguages":["react-native","swiftui"]},"name":"satoshi-crypto","slug":"satoshi-crypto","tags":["Dark","Crypto","Fintech"],"type":"registry:block","files":[{"path":"App.tsx","type":"registry:page","rawUrl":"https://api.vp0.com/designs/satoshi-crypto/raw?language=react-native&path=App.tsx","target":"app/App.tsx","content":"import React, { useState } from 'react';\nimport { View, Text, ScrollView, Pressable, StyleSheet, SafeAreaView } from 'react-native';\n\nconst COINS = [\n  { sym: 'BTC', name: 'Bitcoin', price: 67482, chg: 2.4, icon: '₿', c: '#F7931A' },\n  { sym: 'ETH', name: 'Ethereum', price: 3521, chg: -1.2, icon: 'Ξ', c: '#627EEA' },\n  { sym: 'SOL', name: 'Solana', price: 168, chg: 5.8, icon: '◎', c: '#14F195' },\n  { sym: 'ADA', name: 'Cardano', price: 0.59, chg: 0.9, icon: '₳', c: '#0033AD' },\n  { sym: 'DOT', name: 'Polkadot', price: 7.21, chg: -3.1, icon: '●', c: '#E6007A' },\n];\n\nexport default function App() {\n  const [range, setRange] = useState('1W');\n  return (\n    <SafeAreaView style={s.safe}>\n      <ScrollView contentContainerStyle={s.scroll} showsVerticalScrollIndicator={false}>\n        <Text style={s.kicker}>PORTFOLIO</Text>\n        <Text style={s.balance}>$48,209.18</Text>\n        <Text style={s.change}>▲ $1,204.55 (2.6%) today</Text>\n\n        <View style={s.spark}>\n          {[30, 42, 38, 55, 48, 62, 58, 70, 64, 78, 72, 88].map((h, i) => (\n            <View key={i} style={[s.sparkBar, { height: h }]} />\n          ))}\n        </View>\n        <View style={s.ranges}>\n          {['1D', '1W', '1M', '1Y'].map((r) => (\n            <Pressable key={r} onPress={() => setRange(r)} style={[s.range, range === r && s.rangeOn]}>\n              <Text style={[s.rangeText, range === r && s.rangeTextOn]}>{r}</Text>\n            </Pressable>\n          ))}\n        </View>\n\n        <Text style={s.section}>Holdings</Text>\n        {COINS.map((c) => (\n          <View key={c.sym} style={s.coin}>\n            <View style={[s.coinIcon, { backgroundColor: c.c + '22' }]}><Text style={[s.coinGlyph, { color: c.c }]}>{c.icon}</Text></View>\n            <View style={{ flex: 1 }}>\n              <Text style={s.coinName}>{c.name}</Text>\n              <Text style={s.coinSym}>{c.sym}</Text>\n            </View>\n            <View style={{ alignItems: 'flex-end' }}>\n              <Text style={s.coinPrice}>{'$' + c.price.toLocaleString()}</Text>\n              <Text style={[s.coinChg, { color: c.chg < 0 ? '#FF5C5C' : '#22C55E' }]}>{(c.chg < 0 ? '' : '+') + c.chg + '%'}</Text>\n            </View>\n          </View>\n        ))}\n      </ScrollView>\n    </SafeAreaView>\n  );\n}\n\nconst s = StyleSheet.create({\n  safe: { flex: 1, backgroundColor: '#0A0A0D' },\n  scroll: { padding: 22, paddingTop: 60 },\n  kicker: { color: '#F7931A', fontSize: 12, fontWeight: '700', letterSpacing: 2 },\n  balance: { color: '#fff', fontSize: 42, fontWeight: '800', marginTop: 6, letterSpacing: -1 },\n  change: { color: '#22C55E', fontSize: 15, fontWeight: '600', marginTop: 4 },\n  spark: { flexDirection: 'row', alignItems: 'flex-end', justifyContent: 'space-between', height: 96, marginTop: 24, gap: 6 },\n  sparkBar: { flex: 1, backgroundColor: '#F7931A', borderRadius: 4, opacity: 0.85 },\n  ranges: { flexDirection: 'row', gap: 10, marginTop: 18 },\n  range: { paddingVertical: 8, paddingHorizontal: 18, borderRadius: 20, backgroundColor: '#15151B' },\n  rangeOn: { backgroundColor: '#F7931A' },\n  rangeText: { color: '#8A8A96', fontSize: 14, fontWeight: '600' },\n  rangeTextOn: { color: '#1A1206' },\n  section: { color: '#fff', fontSize: 18, fontWeight: '700', marginTop: 30, marginBottom: 8 },\n  coin: { flexDirection: 'row', alignItems: 'center', paddingVertical: 13 },\n  coinIcon: { width: 46, height: 46, borderRadius: 23, alignItems: 'center', justifyContent: 'center', marginRight: 14 },\n  coinGlyph: { fontSize: 22, fontWeight: '700' },\n  coinName: { color: '#EDEDF2', fontSize: 16, fontWeight: '600' },\n  coinSym: { color: '#6A6A78', fontSize: 13, marginTop: 2 },\n  coinPrice: { color: '#EDEDF2', fontSize: 16, fontWeight: '700' },\n  coinChg: { fontSize: 14, fontWeight: '600', marginTop: 2 },\n});\n","language":"react-native"},{"path":"CryptoView.swift","type":"registry:page","rawUrl":"https://api.vp0.com/designs/satoshi-crypto/raw?language=swiftui&path=CryptoView.swift","target":"app/CryptoView.swift","content":"import SwiftUI\n\nstruct Coin: Identifiable { let id = UUID(); let sym: String; let name: String; let price: Double; let chg: Double }\n\nstruct CryptoView: View {\n    let coins: [Coin] = [\n        .init(sym: \"BTC\", name: \"Bitcoin\", price: 67482, chg: 2.4),\n        .init(sym: \"ETH\", name: \"Ethereum\", price: 3521, chg: -1.2),\n        .init(sym: \"SOL\", name: \"Solana\", price: 168, chg: 5.8),\n        .init(sym: \"ADA\", name: \"Cardano\", price: 0.59, chg: 0.9),\n        .init(sym: \"DOT\", name: \"Polkadot\", price: 7.21, chg: -3.1)\n    ]\n\n    var body: some View {\n        ZStack {\n            Color(red: 0.04, green: 0.04, blue: 0.05).ignoresSafeArea()\n            ScrollView {\n                VStack(alignment: .leading, spacing: 6) {\n                    Text(\"PORTFOLIO\").font(.caption).bold().foregroundColor(Color(red: 0.97, green: 0.58, blue: 0.1))\n                    Text(\"$48,209.18\").font(.system(size: 40, weight: .heavy)).foregroundColor(.white)\n                    Text(\"▲ $1,204.55 (2.6%) today\").foregroundColor(Color(red: 0.13, green: 0.77, blue: 0.37))\n\n                    Text(\"Holdings\").font(.title3).bold().foregroundColor(.white).padding(.top, 24)\n                    ForEach(coins) { c in\n                        HStack {\n                            VStack(alignment: .leading, spacing: 2) {\n                                Text(c.name).fontWeight(.semibold).foregroundColor(.white)\n                                Text(c.sym).font(.footnote).foregroundColor(.gray)\n                            }\n                            Spacer()\n                            VStack(alignment: .trailing, spacing: 2) {\n                                Text(\"$\\(c.price, specifier: \"%.2f\")\").fontWeight(.semibold).foregroundColor(.white)\n                                Text(\"\\(c.chg >= 0 ? \"+\" : \"\")\\(c.chg, specifier: \"%.1f\")%\")\n                                    .font(.footnote)\n                                    .foregroundColor(c.chg < 0 ? Color(red: 1, green: 0.36, blue: 0.36) : Color(red: 0.13, green: 0.77, blue: 0.37))\n                            }\n                        }\n                        .padding(.vertical, 12)\n                    }\n                }\n                .padding(22)\n            }\n        }\n    }\n}\n\n#Preview { CryptoView() }\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":"Satoshi — Crypto","assets":[{"url":"https://storage.vp0.com/vp0/covers/c31f4ba2-5876-44b8-9f05-93987fcf4539/707cab22-c956-427b-99a3-bbf38f7ffda0/full.webp","kind":"cover","lqip":"BQgGCwJ5j2Zog5CVZn9m9mY=","width":804,"height":1748,"variants":{"avif":"https://storage.vp0.com/vp0/covers/c31f4ba2-5876-44b8-9f05-93987fcf4539/707cab22-c956-427b-99a3-bbf38f7ffda0/avif.avif","card":"https://storage.vp0.com/vp0/covers/c31f4ba2-5876-44b8-9f05-93987fcf4539/707cab22-c956-427b-99a3-bbf38f7ffda0/card.webp","full":"https://storage.vp0.com/vp0/covers/c31f4ba2-5876-44b8-9f05-93987fcf4539/707cab22-c956-427b-99a3-bbf38f7ffda0/full.webp","thumb":"https://storage.vp0.com/vp0/covers/c31f4ba2-5876-44b8-9f05-93987fcf4539/707cab22-c956-427b-99a3-bbf38f7ffda0/thumb.webp"}},{"url":"https://storage.vp0.com/vp0/clips/8/d5b60480-61ab-41ec-a0c7-dee1b7385d41/clip.mp4","kind":"video","variants":{"mp4":"https://storage.vp0.com/vp0/clips/8/d5b60480-61ab-41ec-a0c7-dee1b7385d41/clip.mp4","webm":"https://storage.vp0.com/vp0/clips/8/d5b60480-61ab-41ec-a0c7-dee1b7385d41/clip.webm","poster":"https://storage.vp0.com/vp0/clips/8/d5b60480-61ab-41ec-a0c7-dee1b7385d41/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":"CryptoView.swift"}],"version":"1.0.0","category":"Crypto","platform":"ios","createdAt":"2026-05-25T19:40:48.942Z","createdBy":"vp0","importUrl":"https://vp0.com/source/satoshi-crypto","styleTags":["Dark","Fintech"],"updatedAt":"2026-05-25T19:40:48.942Z","categories":["Crypto"],"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/satoshi-crypto (machine-readable JSON manifest: https://api.vp0.com/designs/satoshi-crypto/manifest). Design: \"Satoshi — Crypto\" — Track a crypto portfolio with live-style movers and a clean holdings list.. Match the layout and styling exactly; it's an iOS UI starter, so add my own data/logic afterward.","sourceHash":"sha256:0c8b6319ba5dca43af59060fc2ee62d4a8e3533e22a44b5a6e1a84cec6257737","contentType":"template","description":"Track a crypto portfolio with live-style movers and a clean holdings list.","manifestUrl":"https://api.vp0.com/designs/satoshi-crypto/manifest","sourceToken":"vp0_14d22764d7922f4c41142d4c","dependencies":{},"installHints":{"cli":"npx vp0 add satoshi-crypto --target react-native","mcp":"claude mcp add vp0 -- npx -y vp0-mcp","shadcn":"npx shadcn@latest add https://api.vp0.com/r/satoshi-crypto.json","openInV0":"https://v0.dev/chat/api/open?url=https://api.vp0.com/r/satoshi-crypto.json","defaultTarget":"react-native"},"schemaVersion":"vp0-bundle.v1","aiInstructions":"This is an iOS app UI starter for Expo React Native (\"Satoshi — Crypto\").\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   - CryptoView.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":[]}