📱 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.
Summit — Goals
Set quarterly goals and track milestones with satisfying progress bars.
#Dark #Goal Tracking #Motivation
https://vp0.com/source/summit-goalsnpx vp0 add summit-goals --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/summit-goals (machine-readable JSON manifest: https://api.vp0.com/designs/summit-goals/manifest). Design: "Summit — Goals" — Set quarterly goals and track milestones with satisfying progress bars.. 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 ("Summit — Goals").
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 GOALS = [
{ name: 'Run a half marathon', icon: '🏃', pct: 72, milestone: '15km longest run' },
{ name: 'Ship the app', icon: '🚀', pct: 90, milestone: 'Beta with 50 users' },
{ name: 'Read 12 books', icon: '📚', pct: 50, milestone: '6 of 12 read' },
{ name: 'Learn Spanish', icon: '🇪🇸', pct: 34, milestone: '40 day streak' },
];
export default function App() {
return (
<SafeAreaView style={s.safe}>
<ScrollView contentContainerStyle={s.scroll} showsVerticalScrollIndicator={false}>
<Text style={s.kicker}>Q2 GOALS</Text>
<Text style={s.h1}>Keep climbing</Text>
<View style={s.summary}>
<Text style={s.sumN}>62%</Text>
<Text style={s.sumL}>average progress across 4 goals</Text>
</View>
{GOALS.map((g) => (
<View key={g.name} style={s.card}>
<View style={s.cardTop}>
<Text style={s.icon}>{g.icon}</Text>
<Text style={s.name}>{g.name}</Text>
<Text style={s.pct}>{g.pct}%</Text>
</View>
<View style={s.track}><View style={[s.fill, { width: g.pct + '%' }]} /></View>
<Text style={s.milestone}>◷ {g.milestone}</Text>
</View>
))}
</ScrollView>
</SafeAreaView>
);
}
const s = StyleSheet.create({
safe: { flex: 1, backgroundColor: '#06120F' },
scroll: { padding: 22, paddingTop: 60 },
kicker: { color: '#14B8A6', fontSize: 12, fontWeight: '700', letterSpacing: 2 },
h1: { color: '#fff', fontSize: 32, fontWeight: '800', marginTop: 4 },
summary: { backgroundColor: '#0A2019', borderRadius: 20, padding: 22, marginVertical: 22, alignItems: 'center' },
sumN: { color: '#2DD4BF', fontSize: 44, fontWeight: '800' },
sumL: { color: '#6FB5A8', fontSize: 14, marginTop: 4 },
card: { backgroundColor: '#0B1A16', borderRadius: 18, padding: 18, marginBottom: 14 },
cardTop: { flexDirection: 'row', alignItems: 'center', marginBottom: 14 },
icon: { fontSize: 22, marginRight: 12 },
name: { color: '#E6F2EF', fontSize: 16, fontWeight: '700', flex: 1 },
pct: { color: '#2DD4BF', fontSize: 18, fontWeight: '800' },
track: { height: 10, borderRadius: 5, backgroundColor: '#11271F', overflow: 'hidden' },
fill: { height: '100%', backgroundColor: '#14B8A6', borderRadius: 5 },
milestone: { color: '#6FB5A8', fontSize: 13, marginTop: 12 },
});
Machine endpoints
- Manifest (JSON):/designs/summit-goals/manifest
- Registry alias:/r/summit-goals.json
- File tree:/designs/summit-goals/files
- Download bundle (.zip):/designs/summit-goals/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.