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.

    Vault — Wallet

    templateiosby @vp0

    A personal finance home with a balance card and recent activity.

    #Dark #Finance #Fintech

    Works withClaude CodeCursorRorkLovablev0& any AI coding agent
    https://vp0.com/source/vault-wallet
    npx vp0 add vault-wallet --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/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.

    Integration steps
    This is an iOS app UI starter for Expo React Native ("Vault — Wallet").
    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
       - WalletView.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

    Vault — Wallet preview 1

    Code · 1 file

    Download .zip
    WalletView.swift
    raw
    import SwiftUI
    
    struct Tx: Identifiable { let id = UUID(); let name: String; let sub: String; let amount: Double; let icon: String }
    
    struct WalletView: View {
        let transactions: [Tx] = [
            .init(name: "Spotify", sub: "Subscriptions", amount: -11.99, icon: "music.note"),
            .init(name: "Salary", sub: "Acme Inc", amount: 4200, icon: "briefcase.fill"),
            .init(name: "Whole Foods", sub: "Groceries", amount: -86.4, icon: "cart.fill"),
            .init(name: "Uber", sub: "Transport", amount: -18.2, icon: "car.fill")
        ]
    
        var body: some View {
            ZStack {
                Color(red: 0.04, green: 0.05, blue: 0.04).ignoresSafeArea()
                ScrollView {
                    VStack(alignment: .leading, spacing: 16) {
                        Text("Good afternoon, Maya").foregroundColor(Color(white: 0.6))
                        VStack(alignment: .leading, spacing: 8) {
                            Text("Total balance").font(.subheadline).foregroundColor(Color(red: 0.37, green: 0.68, blue: 0.48))
                            Text("$12,480.55").font(.system(size: 40, weight: .heavy)).foregroundColor(.white)
                            HStack {
                                Text("•••• 4921").foregroundColor(Color(red: 0.5, green: 0.75, blue: 0.58))
                                Spacer()
                                Text("+2.4% this month").foregroundColor(Color(red: 0.13, green: 0.77, blue: 0.37))
                            }
                        }
                        .padding(24).background(Color(red: 0.06, green: 0.10, blue: 0.07)).cornerRadius(24)
    
                        Text("Recent activity").font(.title3).bold().foregroundColor(.white).padding(.top, 8)
                        ForEach(transactions) { tx in
                            HStack(spacing: 14) {
                                Image(systemName: tx.icon).frame(width: 46, height: 46)
                                    .background(Color.white.opacity(0.05)).cornerRadius(14).foregroundColor(.white)
                                VStack(alignment: .leading, spacing: 2) {
                                    Text(tx.name).fontWeight(.semibold).foregroundColor(.white)
                                    Text(tx.sub).font(.footnote).foregroundColor(.gray)
                                }
                                Spacer()
                                Text(tx.amount < 0 ? "-$\(abs(tx.amount), specifier: "%.2f")" : "+$\(tx.amount, specifier: "%.2f")")
                                    .fontWeight(.semibold)
                                    .foregroundColor(tx.amount < 0 ? .white : Color(red: 0.13, green: 0.77, blue: 0.37))
                            }
                            .padding(.vertical, 10)
                        }
                    }
                    .padding(22)
                }
            }
        }
    }
    
    #Preview { WalletView() }
    

    Machine endpoints

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