📱 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.
Airwave — Podcasts
Browse episodes and queue up your next listen with a tidy player bar.
#Dark #Music #Media
https://vp0.com/source/airwave-podcastsnpx vp0 add airwave-podcasts --target react-nativeOr 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/airwave-podcasts (machine-readable JSON manifest: https://api.vp0.com/designs/airwave-podcasts/manifest). Design: "Airwave — Podcasts" — Browse episodes and queue up your next listen with a tidy player bar.. 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 ("Airwave — Podcasts").
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
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
React Nativeimport React from 'react';
import { View, Text, ScrollView, StyleSheet, SafeAreaView } from 'react-native';
const EPS = [
{ show: 'The Long Game', title: 'Building in public', len: '52 min', emoji: '🎯', c: '#FB7185' },
{ show: 'Deep Work Daily', title: 'Focus in a noisy world', len: '38 min', emoji: '🧠', c: '#818CF8' },
{ show: 'Founders', title: 'The first ten hires', len: '1h 04m', emoji: '🚀', c: '#34D399' },
{ show: 'Night Owl', title: 'Stories after dark', len: '44 min', emoji: '🌃', c: '#FBBF24' },
];
export default function App() {
return (
<SafeAreaView style={s.safe}>
<ScrollView contentContainerStyle={s.scroll} showsVerticalScrollIndicator={false}>
<Text style={s.kicker}>FOR YOU</Text>
<Text style={s.h1}>Listen now</Text>
{EPS.map((e, i) => (
<View key={i} style={s.row}>
<View style={[s.cover, { backgroundColor: e.c + '22' }]}><Text style={{ fontSize: 28 }}>{e.emoji}</Text></View>
<View style={{ flex: 1, marginLeft: 16 }}>
<Text style={s.show}>{e.show}</Text>
<Text style={s.title}>{e.title}</Text>
<Text style={s.len}>▶ {e.len}</Text>
</View>
</View>
))}
</ScrollView>
<View style={s.player}>
<Text style={{ fontSize: 26 }}>🎯</Text>
<View style={{ flex: 1, marginLeft: 12 }}>
<Text style={s.pTitle}>Building in public</Text>
<Text style={s.pShow}>The Long Game</Text>
</View>
<Text style={s.pPlay}>⏸</Text>
</View>
</SafeAreaView>
);
}
const s = StyleSheet.create({
safe: { flex: 1, backgroundColor: '#0E0A0C' },
scroll: { padding: 22, paddingTop: 60, paddingBottom: 20 },
kicker: { color: '#FB7185', fontSize: 12, fontWeight: '700', letterSpacing: 2 },
h1: { color: '#fff', fontSize: 32, fontWeight: '800', marginTop: 4, marginBottom: 18 },
row: { flexDirection: 'row', alignItems: 'center', marginBottom: 20 },
cover: { width: 72, height: 72, borderRadius: 18, alignItems: 'center', justifyContent: 'center' },
show: { color: '#A88', fontSize: 13, fontWeight: '600' },
title: { color: '#fff', fontSize: 17, fontWeight: '700', marginTop: 3 },
len: { color: '#FB7185', fontSize: 13, marginTop: 5 },
player: { flexDirection: 'row', alignItems: 'center', backgroundColor: '#1A1216', margin: 16, borderRadius: 18, padding: 14 },
pTitle: { color: '#fff', fontSize: 15, fontWeight: '700' },
pShow: { color: '#A88', fontSize: 13, marginTop: 2 },
pPlay: { fontSize: 26, color: '#fff' },
});
Machine endpoints
- Manifest (JSON):/designs/airwave-podcasts/manifest
- Registry alias:/r/airwave-podcasts.json
- File tree:/designs/airwave-podcasts/files
- Download bundle (.zip):/designs/airwave-podcasts/bundle.zip
- 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.