📱 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
A now-playing screen with album art, scrubber, and playback controls.
#Dark #Music #Media
https://vp0.com/source/wave-music-playernpx vp0 add wave-music-player --target swiftuiOr 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 mcp add vp0 -- npx -y vp0-mcp{
"mcpServers": {
"vp0": { "command": "npx", "args": ["-y", "vp0-mcp"] }
}
}Use with AI
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.
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

Code · 1 file
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
- Manifest (JSON):/designs/wave-music-player/manifest?target=swiftui
- Registry alias:/r/wave-music-player.json
- File tree:/designs/wave-music-player/files
- Download bundle (.zip):/designs/wave-music-player/bundle.zip?target=swiftui
- Bundle JSON Schema:/schema/vp0-bundle.v1.json
- Registry index (all designs):/registry.json
Open, CORS-enabled, no key. React Native is the default target; append ?target=swiftui where SwiftUI is available.