{"id":"vp0.wave-music-player","docs":"This is an iOS app UI starter built with React Native. Paste the design link into your AI app builder (Claude Code, Rork, Lovable) and ask it to start from this design. Add your own backend/data logic. These are UI starters.","kind":"app_template","meta":{"com.vp0.kind":"app_template","com.vp0.category":"Music","com.vp0.platform":"ios","com.vp0.contentId":"81de7b3b-bc9b-492c-89bd-6ed1d51c8d8a","com.vp0.simulator":{"target":"react-native","embedUrl":null,"provider":null,"entrypoint":"App.tsx","buildStatus":null,"simulatable":true},"com.vp0.sourceHash":"sha256:17847b3cfa328520d4e3c4e98fcab53297091f1d7957a3105119a92ec25c3a0a","com.vp0.contentType":"template","com.vp0.sourceToken":"vp0_5c30920c24a31b41acfe593e","com.vp0.defaultLanguage":"react-native","com.vp0.availableLanguages":["react-native","swiftui"]},"name":"wave-music-player","slug":"wave-music-player","tags":["Dark","Music","Media"],"type":"registry:block","files":[{"path":"App.tsx","type":"registry:page","rawUrl":"https://api.vp0.com/designs/wave-music-player/raw?language=react-native&path=App.tsx","target":"app/App.tsx","content":"import React, { useState } from 'react';\nimport { View, Text, Pressable, StyleSheet, SafeAreaView } from 'react-native';\n\nexport default function App() {\n  const [playing, setPlaying] = useState(true);\n  const [liked, setLiked] = useState(false);\n  return (\n    <SafeAreaView style={s.safe}>\n      <View style={s.top}>\n        <Text style={s.topLabel}>PLAYING FROM</Text>\n        <Text style={s.topName}>Late Night Drive</Text>\n      </View>\n      <View style={s.artWrap}>\n        <View style={s.art}><Text style={s.artEmoji}>🌌</Text></View>\n      </View>\n      <View style={s.meta}>\n        <View style={{ flex: 1 }}>\n          <Text style={s.song}>Midnight City</Text>\n          <Text style={s.artist}>Neon Coast</Text>\n        </View>\n        <Pressable onPress={() => setLiked((l) => !l)}><Text style={s.heart}>{liked ? '❤️' : '🤍'}</Text></Pressable>\n      </View>\n      <View style={s.scrub}><View style={s.scrubFill} /><View style={s.knob} /></View>\n      <View style={s.times}><Text style={s.time}>1:42</Text><Text style={s.time}>3:58</Text></View>\n      <View style={s.controls}>\n        <Text style={s.ctrlSm}>🔀</Text>\n        <Text style={s.ctrl}>⏮</Text>\n        <Pressable onPress={() => setPlaying((p) => !p)} style={s.play}>\n          <Text style={s.playIcon}>{playing ? '⏸' : '▶'}</Text>\n        </Pressable>\n        <Text style={s.ctrl}>⏭</Text>\n        <Text style={s.ctrlSm}>🔁</Text>\n      </View>\n    </SafeAreaView>\n  );\n}\n\nconst s = StyleSheet.create({\n  safe: { flex: 1, backgroundColor: '#0C0814' },\n  top: { paddingTop: 60, alignItems: 'center' },\n  topLabel: { color: '#9A7FC9', fontSize: 11, fontWeight: '700', letterSpacing: 2 },\n  topName: { color: '#fff', fontSize: 16, fontWeight: '600', marginTop: 4 },\n  artWrap: { alignItems: 'center', marginTop: 34 },\n  art: { width: 300, height: 300, borderRadius: 28, backgroundColor: '#1C1230', alignItems: 'center', justifyContent: 'center' },\n  artEmoji: { fontSize: 120 },\n  meta: { flexDirection: 'row', alignItems: 'center', paddingHorizontal: 30, marginTop: 40 },\n  song: { color: '#fff', fontSize: 26, fontWeight: '800' },\n  artist: { color: '#9A7FC9', fontSize: 17, marginTop: 4 },\n  heart: { fontSize: 26 },\n  scrub: { height: 5, borderRadius: 3, backgroundColor: '#241934', marginHorizontal: 30, marginTop: 30, justifyContent: 'center' },\n  scrubFill: { position: 'absolute', left: 0, width: '43%', height: 5, borderRadius: 3, backgroundColor: '#A855F7' },\n  knob: { position: 'absolute', left: '43%', width: 14, height: 14, borderRadius: 7, backgroundColor: '#fff' },\n  times: { flexDirection: 'row', justifyContent: 'space-between', paddingHorizontal: 30, marginTop: 12 },\n  time: { color: '#7A6699', fontSize: 13 },\n  controls: { flexDirection: 'row', alignItems: 'center', justifyContent: 'space-between', paddingHorizontal: 40, marginTop: 36 },\n  ctrl: { fontSize: 34, color: '#fff' },\n  ctrlSm: { fontSize: 22 },\n  play: { width: 76, height: 76, borderRadius: 38, backgroundColor: '#A855F7', alignItems: 'center', justifyContent: 'center' },\n  playIcon: { fontSize: 30, color: '#fff' },\n});\n","language":"react-native"},{"path":"MusicPlayerView.swift","type":"registry:page","rawUrl":"https://api.vp0.com/designs/wave-music-player/raw?language=swiftui&path=MusicPlayerView.swift","target":"app/MusicPlayerView.swift","content":"import SwiftUI\n\nstruct MusicPlayerView: View {\n    @State private var playing = true\n    @State private var liked = false\n\n    var body: some View {\n        ZStack {\n            Color(red: 0.05, green: 0.03, blue: 0.08).ignoresSafeArea()\n            VStack(spacing: 0) {\n                VStack(spacing: 4) {\n                    Text(\"PLAYING FROM\").font(.caption).bold().foregroundColor(Color(red: 0.6, green: 0.5, blue: 0.79))\n                    Text(\"Late Night Drive\").fontWeight(.semibold).foregroundColor(.white)\n                }.padding(.top, 24)\n\n                RoundedRectangle(cornerRadius: 28)\n                    .fill(Color(red: 0.11, green: 0.07, blue: 0.19))\n                    .frame(width: 300, height: 300)\n                    .overlay(Image(systemName: \"moon.stars.fill\").font(.system(size: 90)).foregroundColor(.white.opacity(0.85)))\n                    .padding(.top, 34)\n\n                HStack {\n                    VStack(alignment: .leading) {\n                        Text(\"Midnight City\").font(.system(size: 26, weight: .heavy)).foregroundColor(.white)\n                        Text(\"Neon Coast\").font(.title3).foregroundColor(Color(red: 0.6, green: 0.5, blue: 0.79))\n                    }\n                    Spacer()\n                    Button { liked.toggle() } label: {\n                        Image(systemName: liked ? \"heart.fill\" : \"heart\").foregroundColor(.white).font(.title2)\n                    }\n                }.padding(.horizontal, 30).padding(.top, 40)\n\n                ProgressView(value: 0.43)\n                    .tint(Color(red: 0.66, green: 0.33, blue: 0.97))\n                    .padding(.horizontal, 30).padding(.top, 24)\n\n                HStack(spacing: 36) {\n                    Image(systemName: \"backward.fill\")\n                    Button { playing.toggle() } label: {\n                        Image(systemName: playing ? \"pause.circle.fill\" : \"play.circle.fill\")\n                            .font(.system(size: 72)).foregroundColor(Color(red: 0.66, green: 0.33, blue: 0.97))\n                    }\n                    Image(systemName: \"forward.fill\")\n                }\n                .font(.title).foregroundColor(.white).padding(.top, 30)\n                Spacer()\n            }\n        }\n    }\n}\n\n#Preview { MusicPlayerView() }\n","language":"swiftui"}],"notes":"This is an iOS app UI starter built with React Native. Paste the design link into your AI app builder (Claude Code, Rork, Lovable) and ask it to start from this design. Add your own backend/data logic. These are UI starters.","title":"Wave — Music Player","assets":[{"url":"https://storage.vp0.com/vp0/covers/81de7b3b-bc9b-492c-89bd-6ed1d51c8d8a/7e4626b8-72a7-4f75-af50-d58dab4ea7a9/full.webp","kind":"cover","lqip":"RwcGCwAIejaXhYGp94ObBGc=","width":1206,"height":2622,"variants":{"avif":"https://storage.vp0.com/vp0/covers/81de7b3b-bc9b-492c-89bd-6ed1d51c8d8a/7e4626b8-72a7-4f75-af50-d58dab4ea7a9/avif.avif","card":"https://storage.vp0.com/vp0/covers/81de7b3b-bc9b-492c-89bd-6ed1d51c8d8a/7e4626b8-72a7-4f75-af50-d58dab4ea7a9/card.webp","full":"https://storage.vp0.com/vp0/covers/81de7b3b-bc9b-492c-89bd-6ed1d51c8d8a/7e4626b8-72a7-4f75-af50-d58dab4ea7a9/full.webp","thumb":"https://storage.vp0.com/vp0/covers/81de7b3b-bc9b-492c-89bd-6ed1d51c8d8a/7e4626b8-72a7-4f75-af50-d58dab4ea7a9/thumb.webp","light_avif":"https://storage.vp0.com/vp0/covers/81de7b3b-bc9b-492c-89bd-6ed1d51c8d8a/29a24edd-f945-4f1c-9083-799028c0a40c/avif.avif","light_card":"https://storage.vp0.com/vp0/covers/81de7b3b-bc9b-492c-89bd-6ed1d51c8d8a/29a24edd-f945-4f1c-9083-799028c0a40c/card.webp","light_full":"https://storage.vp0.com/vp0/covers/81de7b3b-bc9b-492c-89bd-6ed1d51c8d8a/29a24edd-f945-4f1c-9083-799028c0a40c/full.webp","light_thumb":"https://storage.vp0.com/vp0/covers/81de7b3b-bc9b-492c-89bd-6ed1d51c8d8a/29a24edd-f945-4f1c-9083-799028c0a40c/thumb.webp"}},{"url":"https://storage.vp0.com/vp0/clips/19/037a23d6-c1eb-4bd7-84b5-88fb069b370c/clip.mp4","kind":"video","variants":{"mp4":"https://storage.vp0.com/vp0/clips/19/037a23d6-c1eb-4bd7-84b5-88fb069b370c/clip.mp4","webm":"https://storage.vp0.com/vp0/clips/19/037a23d6-c1eb-4bd7-84b5-88fb069b370c/clip.webm","poster":"https://storage.vp0.com/vp0/clips/19/037a23d6-c1eb-4bd7-84b5-88fb069b370c/poster.jpg"}}],"author":"@vp0","$schema":"https://api.vp0.com/schema/vp0-bundle.v1.json","license":null,"screens":[],"targets":[{"name":"react-native","entrypoint":"App.tsx"},{"name":"swiftui","entrypoint":"MusicPlayerView.swift"}],"version":"1.0.0","category":"Music","platform":"ios","createdAt":"2026-05-25T19:40:49.280Z","createdBy":"vp0","importUrl":"https://vp0.com/source/wave-music-player","styleTags":["Dark","Media"],"updatedAt":"2026-05-25T19:40:49.280Z","categories":["Music"],"promptText":"Build this iOS app design in my project: \"Wave — Music Player\" — A now-playing screen with album art, scrubber, and playback controls..\n1. Fetch https://api.vp0.com/designs/wave-music-player/manifest — a JSON manifest whose files[] array contains EVERY source file inline (path + content).\n2. Create each file at its exact files[].path and paste its content VERBATIM. Do not re-imagine or restyle the UI — the provided code IS the design.\n3. Install dependencies exactly as given by the manifest's installCommand field (skip if null).\n4. Render the entry component (targets[].entrypoint) from a screen. Keep SafeAreaView / safe-area insets and the existing styling untouched.\n5. It is a UI starter: once it renders pixel-perfect, wire my own data, navigation and backend on top.\nHuman-readable source page: https://vp0.com/source/wave-music-player","sourceHash":"sha256:17847b3cfa328520d4e3c4e98fcab53297091f1d7957a3105119a92ec25c3a0a","contentType":"template","description":"A now-playing screen with album art, scrubber, and playback controls.","manifestUrl":"https://api.vp0.com/designs/wave-music-player/manifest","sourceToken":"vp0_5c30920c24a31b41acfe593e","dependencies":{},"installHints":{"cli":"npx vp0com add wave-music-player --target react-native","mcp":"claude mcp add vp0 -- npx -y vp0-mcp","shadcn":"npx shadcn@latest add https://api.vp0.com/r/wave-music-player.json","openInV0":"https://v0.dev/chat/api/open?url=https://api.vp0.com/r/wave-music-player.json","downloadExpo":"https://api.vp0.com/export/wave-music-player/expo.zip","defaultTarget":"react-native","downloadXcode":"https://api.vp0.com/export/wave-music-player/xcode.zip"},"schemaVersion":"vp0-bundle.v1","aiInstructions":"This is an iOS app UI starter for Expo React Native (\"Wave — Music Player\").\nIntegrate it into the user's Expo project as follows:\n1. No extra dependencies are required.\n2. Create the following file(s) and paste each provided \"content\" exactly:\n   - App.tsx\n   - MusicPlayerView.swift\n3. 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.\n4. These are UI starters: reproduce the visual layout faithfully, then wire the user's own data/navigation/backend afterward.","componentsUsed":[],"installCommand":null,"defaultLanguage":"react-native","devDependencies":{},"availableLanguages":["react-native","swiftui"],"registryDependencies":[]}