📱 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.
Welcome — Onboarding
A polished paged onboarding flow with progress dots and a call to action.
#Productivity #Minimal #Flow
https://vp0.com/source/welcome-onboardingnpx vp0 add welcome-onboarding --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/welcome-onboarding (machine-readable JSON manifest: https://api.vp0.com/designs/welcome-onboarding/manifest). Design: "Welcome — Onboarding" — A polished paged onboarding flow with progress dots and a call to action.. 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 ("Welcome — Onboarding").
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, { useState } from 'react';
import { View, Text, Pressable, StyleSheet, SafeAreaView } from 'react-native';
const PAGES = [
{ emoji: '🎨', title: 'Design without limits', body: 'A library of beautiful, ready-to-use mobile screens.', c: '#0EA5E9' },
{ emoji: '⚡', title: 'Build in minutes', body: 'Copy a design link and hand it straight to your AI builder.', c: '#8B5CF6' },
{ emoji: '🚀', title: 'Ship something great', body: 'Free forever. Browse, remix, and launch your idea today.', c: '#22C55E' },
];
export default function App() {
const [page, setPage] = useState(0);
const p = PAGES[page];
const last = page === PAGES.length - 1;
return (
<SafeAreaView style={[s.safe, { backgroundColor: '#0A0E14' }]}>
<View style={s.center}>
<View style={[s.badge, { backgroundColor: p.c + '22' }]}><Text style={s.emoji}>{p.emoji}</Text></View>
<Text style={s.title}>{p.title}</Text>
<Text style={s.body}>{p.body}</Text>
</View>
<View style={s.footer}>
<View style={s.dots}>
{PAGES.map((_, i) => (<View key={i} style={[s.dot, i === page && { backgroundColor: p.c, width: 24 }]} />))}
</View>
<Pressable onPress={() => setPage((x) => (last ? 0 : x + 1))} style={[s.btn, { backgroundColor: p.c }]}>
<Text style={s.btnText}>{last ? 'Get started' : 'Continue'}</Text>
</Pressable>
<Text style={s.skip}>{last ? 'Welcome aboard' : 'Skip'}</Text>
</View>
</SafeAreaView>
);
}
const s = StyleSheet.create({
safe: { flex: 1 },
center: { flex: 1, alignItems: 'center', justifyContent: 'center', paddingHorizontal: 36 },
badge: { width: 140, height: 140, borderRadius: 40, alignItems: 'center', justifyContent: 'center', marginBottom: 40 },
emoji: { fontSize: 70 },
title: { color: '#fff', fontSize: 30, fontWeight: '800', textAlign: 'center', letterSpacing: -0.5 },
body: { color: '#8A93A6', fontSize: 17, textAlign: 'center', marginTop: 14, lineHeight: 25 },
footer: { paddingHorizontal: 30, paddingBottom: 40 },
dots: { flexDirection: 'row', justifyContent: 'center', gap: 8, marginBottom: 26 },
dot: { width: 8, height: 8, borderRadius: 4, backgroundColor: '#2A2E38' },
btn: { borderRadius: 30, paddingVertical: 18, alignItems: 'center' },
btnText: { color: '#fff', fontSize: 17, fontWeight: '800' },
skip: { color: '#5A5E68', fontSize: 15, textAlign: 'center', marginTop: 18, fontWeight: '600' },
});
Machine endpoints
- Manifest (JSON):/designs/welcome-onboarding/manifest
- Registry alias:/r/welcome-onboarding.json
- File tree:/designs/welcome-onboarding/files
- Download bundle (.zip):/designs/welcome-onboarding/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.