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.

    Spark — Dating

    templateiosby @vp0

    A swipeable profile stack with like and pass, the classic dating flow.

    #Dating #Social #Colorful

    Works withClaude CodeCursorRorkLovablev0& any AI coding agent
    https://vp0.com/source/spark-dating
    npx vp0 add spark-dating --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/spark-dating (machine-readable JSON manifest: https://api.vp0.com/designs/spark-dating/manifest). Design: "Spark — Dating" — A swipeable profile stack with like and pass, the classic dating flow.. 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 ("Spark — Dating").
    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
       - DatingView.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

    Spark — Dating preview 1

    Code · 1 file

    Download .zip
    DatingView.swift
    raw
    import SwiftUI
    
    struct DatingView: View {
        @State private var index = 0
        private let profiles = [
            (name: "Maya", age: 27, emoji: "🌸", bio: "Coffee, climbing, and bad puns.", tags: ["Climbing", "Film", "Ramen"]),
            (name: "Theo", age: 30, emoji: "🎸", bio: "Plays guitar, collects vinyl.", tags: ["Music", "Vinyl", "Hiking"])
        ]
        private var p: (name: String, age: Int, emoji: String, bio: String, tags: [String]) { profiles[index % profiles.count] }
    
        var body: some View {
            ZStack {
                Color(red: 0.07, green: 0.04, blue: 0.05).ignoresSafeArea()
                VStack {
                    Text("spark").font(.system(size: 26, weight: .heavy))
                        .foregroundColor(Color(red: 1, green: 0.3, blue: 0.4)).frame(maxWidth: .infinity, alignment: .leading).padding()
    
                    VStack(alignment: .leading, spacing: 0) {
                        RoundedRectangle(cornerRadius: 0)
                            .fill(Color(red: 1, green: 0.3, blue: 0.4).opacity(0.12))
                            .frame(height: 280)
                            .overlay(Text(p.emoji).font(.system(size: 110)))
                        VStack(alignment: .leading, spacing: 10) {
                            Text("\(p.name), \(p.age)").font(.system(size: 26, weight: .heavy)).foregroundColor(.white)
                            Text(p.bio).foregroundColor(Color(white: 0.8))
                            HStack {
                                ForEach(p.tags, id: \.self) { t in
                                    Text(t).font(.footnote).padding(.vertical, 6).padding(.horizontal, 12)
                                        .background(Color.white.opacity(0.08)).foregroundColor(Color(red: 1, green: 0.56, blue: 0.63)).cornerRadius(14)
                                }
                            }
                        }.padding(18)
                    }
                    .background(Color.white.opacity(0.04)).cornerRadius(24).padding(.horizontal, 18)
    
                    Spacer()
                    HStack(spacing: 28) {
                        Button { index += 1 } label: {
                            Image(systemName: "xmark").font(.title).foregroundColor(Color(red: 1, green: 0.48, blue: 0.54))
                                .frame(width: 64, height: 64).background(Color.white.opacity(0.06)).clipShape(Circle())
                        }
                        Button { index += 1 } label: {
                            Image(systemName: "heart.fill").font(.title).foregroundColor(.white)
                                .frame(width: 64, height: 64).background(Color(red: 1, green: 0.3, blue: 0.4)).clipShape(Circle())
                        }
                    }.padding(.bottom, 40)
                }
            }
        }
    }
    
    #Preview { DatingView() }
    

    Machine endpoints

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