VP0Design source for AI builders
    View design page

    📱 iOS app UI starter. Paste the design link below into Claude Code, Rork, Lovable, or your AI app builder and ask it to start from this design. These are UI starters. Add your own backend/data logic.

    Satoshi — Crypto

    templateiosby @vp0

    Track a crypto portfolio with live-style movers and a clean holdings list.

    #Dark #Crypto #Fintech

    Works withClaude CodeCursorRorkLovablev0& any AI coding agent
    https://vp0.com/source/satoshi-crypto
    npx vp0 add satoshi-crypto --target swiftui
    Open in v0

    Or skip the paste

    Install the free VP0 MCP once and your AI builder can search and import any design by name, with no link to copy and no API key.

    Claude Code
    claude mcp add vp0 -- npx -y vp0-mcp
    Cursor / Windsurf
    {
      "mcpServers": {
        "vp0": { "command": "npx", "args": ["-y", "vp0-mcp"] }
      }
    }

    Use with AI

    Prompt

    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.

    Integration steps
    This is an iOS app UI starter for Expo React Native ("Satoshi — Crypto").
    Integrate it into the user's Expo project as follows:
    1. No extra dependencies are required.
    2. Create the following file(s) and paste each provided "content" exactly:
       - App.tsx
       - CryptoView.swift
    3. 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.
    4. These are UI starters: reproduce the visual layout faithfully, then wire the user's own data/navigation/backend afterward.

    Preview

    Satoshi — Crypto preview 1

    Code · 1 file

    Download .zip
    CryptoView.swift
    raw
    import SwiftUI
    
    struct Coin: Identifiable { let id = UUID(); let sym: String; let name: String; let price: Double; let chg: Double }
    
    struct CryptoView: View {
        let coins: [Coin] = [
            .init(sym: "BTC", name: "Bitcoin", price: 67482, chg: 2.4),
            .init(sym: "ETH", name: "Ethereum", price: 3521, chg: -1.2),
            .init(sym: "SOL", name: "Solana", price: 168, chg: 5.8),
            .init(sym: "ADA", name: "Cardano", price: 0.59, chg: 0.9),
            .init(sym: "DOT", name: "Polkadot", price: 7.21, chg: -3.1)
        ]
    
        var body: some View {
            ZStack {
                Color(red: 0.04, green: 0.04, blue: 0.05).ignoresSafeArea()
                ScrollView {
                    VStack(alignment: .leading, spacing: 6) {
                        Text("PORTFOLIO").font(.caption).bold().foregroundColor(Color(red: 0.97, green: 0.58, blue: 0.1))
                        Text("$48,209.18").font(.system(size: 40, weight: .heavy)).foregroundColor(.white)
                        Text("▲ $1,204.55 (2.6%) today").foregroundColor(Color(red: 0.13, green: 0.77, blue: 0.37))
    
                        Text("Holdings").font(.title3).bold().foregroundColor(.white).padding(.top, 24)
                        ForEach(coins) { c in
                            HStack {
                                VStack(alignment: .leading, spacing: 2) {
                                    Text(c.name).fontWeight(.semibold).foregroundColor(.white)
                                    Text(c.sym).font(.footnote).foregroundColor(.gray)
                                }
                                Spacer()
                                VStack(alignment: .trailing, spacing: 2) {
                                    Text("$\(c.price, specifier: "%.2f")").fontWeight(.semibold).foregroundColor(.white)
                                    Text("\(c.chg >= 0 ? "+" : "")\(c.chg, specifier: "%.1f")%")
                                        .font(.footnote)
                                        .foregroundColor(c.chg < 0 ? Color(red: 1, green: 0.36, blue: 0.36) : Color(red: 0.13, green: 0.77, blue: 0.37))
                                }
                            }
                            .padding(.vertical, 12)
                        }
                    }
                    .padding(22)
                }
            }
        }
    }
    
    #Preview { CryptoView() }
    

    Machine endpoints

    Open, CORS-enabled, no key. React Native is the default target; append ?target=swiftui where SwiftUI is available.