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.

    Wave — Music Player

    templateiosby @vp0

    A now-playing screen with album art, scrubber, and playback controls.

    #Dark #Music #Media

    Works withClaude CodeCursorRorkLovablev0& any AI coding agent
    https://vp0.com/source/wave-music-player
    npx vp0 add wave-music-player --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/wave-music-player (machine-readable JSON manifest: https://api.vp0.com/designs/wave-music-player/manifest). Design: "Wave — Music Player" — A now-playing screen with album art, scrubber, and playback controls.. 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 ("Wave — Music Player").
    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
       - MusicPlayerView.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

    Wave — Music Player preview 1

    Code · 1 file

    Download .zip
    MusicPlayerView.swift
    raw
    import SwiftUI
    
    struct MusicPlayerView: View {
        @State private var playing = true
        @State private var liked = false
    
        var body: some View {
            ZStack {
                Color(red: 0.05, green: 0.03, blue: 0.08).ignoresSafeArea()
                VStack(spacing: 0) {
                    VStack(spacing: 4) {
                        Text("PLAYING FROM").font(.caption).bold().foregroundColor(Color(red: 0.6, green: 0.5, blue: 0.79))
                        Text("Late Night Drive").fontWeight(.semibold).foregroundColor(.white)
                    }.padding(.top, 24)
    
                    RoundedRectangle(cornerRadius: 28)
                        .fill(Color(red: 0.11, green: 0.07, blue: 0.19))
                        .frame(width: 300, height: 300)
                        .overlay(Image(systemName: "moon.stars.fill").font(.system(size: 90)).foregroundColor(.white.opacity(0.85)))
                        .padding(.top, 34)
    
                    HStack {
                        VStack(alignment: .leading) {
                            Text("Midnight City").font(.system(size: 26, weight: .heavy)).foregroundColor(.white)
                            Text("Neon Coast").font(.title3).foregroundColor(Color(red: 0.6, green: 0.5, blue: 0.79))
                        }
                        Spacer()
                        Button { liked.toggle() } label: {
                            Image(systemName: liked ? "heart.fill" : "heart").foregroundColor(.white).font(.title2)
                        }
                    }.padding(.horizontal, 30).padding(.top, 40)
    
                    ProgressView(value: 0.43)
                        .tint(Color(red: 0.66, green: 0.33, blue: 0.97))
                        .padding(.horizontal, 30).padding(.top, 24)
    
                    HStack(spacing: 36) {
                        Image(systemName: "backward.fill")
                        Button { playing.toggle() } label: {
                            Image(systemName: playing ? "pause.circle.fill" : "play.circle.fill")
                                .font(.system(size: 72)).foregroundColor(Color(red: 0.66, green: 0.33, blue: 0.97))
                        }
                        Image(systemName: "forward.fill")
                    }
                    .font(.title).foregroundColor(.white).padding(.top, 30)
                    Spacer()
                }
            }
        }
    }
    
    #Preview { MusicPlayerView() }
    

    Machine endpoints

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