VP0Design source for AI builders
    View design page

    📱 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.

    Nest — Savings Goals

    templateiosby @vp0

    Set savings goals and watch each pot grow toward its target.

    #Finance #Goal Tracking #Colorful

    Works withClaude CodeCursorRorkLovablev0& any AI coding agent
    https://vp0.com/source/nest-savings-goals
    npx vp0com add nest-savings-goals --target react-native
    Open in v0

    Or 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 Code
    claude mcp add vp0 -- npx -y vp0-mcp
    Cursor / Windsurf
    {
      "mcpServers": {
        "vp0": { "command": "npx", "args": ["-y", "vp0-mcp"] }
      }
    }

    Use with AI

    Prompt

    Build this iOS app design in my project: "Nest — Savings Goals" — Set savings goals and watch each pot grow toward its target.. 1. Fetch https://api.vp0.com/designs/nest-savings-goals/manifest — a JSON manifest whose files[] array contains EVERY source file inline (path + content). 2. 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. 3. Install dependencies exactly as given by the manifest's installCommand field (skip if null). 4. Render the entry component (targets[].entrypoint) from a screen. Keep SafeAreaView / safe-area insets and the existing styling untouched. 5. It is a UI starter: once it renders pixel-perfect, wire my own data, navigation and backend on top. Human-readable source page: https://vp0.com/source/nest-savings-goals

    Integration steps
    This is an iOS app UI starter for Expo React Native ("Nest — Savings 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

    Nest — Savings Goals preview 1

    Code · 1 file

    React Native
    Download .zip
    App.tsx
    raw
    import React from 'react';
    import { View, Text, ScrollView, StyleSheet, SafeAreaView } from 'react-native';
    
    const GOALS = [
      { name: 'Japan trip', icon: '🗾', saved: 2400, target: 4000, c: '#FF6B9D' },
      { name: 'New MacBook', icon: '💻', saved: 1650, target: 2200, c: '#7C5CFF' },
      { name: 'Emergency fund', icon: '🛟', saved: 5200, target: 6000, c: '#22C55E' },
      { name: 'Concert tickets', icon: '🎟️', saved: 120, target: 300, c: '#FFB020' },
    ];
    
    export default function App() {
      const total = GOALS.reduce((a, g) => a + g.saved, 0);
      return (
        <SafeAreaView style={s.safe}>
          <ScrollView contentContainerStyle={s.scroll} showsVerticalScrollIndicator={false}>
            <Text style={s.kicker}>SAVINGS</Text>
            <Text style={s.h1}>{'$' + total.toLocaleString()}</Text>
            <Text style={s.sub}>across {GOALS.length} pots</Text>
            {GOALS.map((g) => {
              const pct = Math.min(100, Math.round((g.saved / g.target) * 100));
              return (
                <View key={g.name} style={s.card}>
                  <View style={s.cardTop}>
                    <View style={[s.icon, { backgroundColor: g.c + '22' }]}><Text style={{ fontSize: 22 }}>{g.icon}</Text></View>
                    <View style={{ flex: 1, marginLeft: 14 }}>
                      <Text style={s.name}>{g.name}</Text>
                      <Text style={s.amt}>{'$' + g.saved.toLocaleString()} of {'$' + g.target.toLocaleString()}</Text>
                    </View>
                    <Text style={[s.pct, { color: g.c }]}>{pct + '%'}</Text>
                  </View>
                  <View style={s.track}><View style={[s.fill, { width: pct + '%', backgroundColor: g.c }]} /></View>
                </View>
              );
            })}
          </ScrollView>
        </SafeAreaView>
      );
    }
    
    const s = StyleSheet.create({
      safe: { flex: 1, backgroundColor: '#0D0B10' },
      scroll: { padding: 22, paddingTop: 60 },
      kicker: { color: '#FF6B9D', fontSize: 12, fontWeight: '700', letterSpacing: 2 },
      h1: { color: '#fff', fontSize: 44, fontWeight: '800', marginTop: 6, letterSpacing: -1 },
      sub: { color: '#8A8A96', fontSize: 15, marginTop: 2, marginBottom: 20 },
      card: { backgroundColor: '#16131B', borderRadius: 20, padding: 18, marginBottom: 14 },
      cardTop: { flexDirection: 'row', alignItems: 'center', marginBottom: 14 },
      icon: { width: 48, height: 48, borderRadius: 15, alignItems: 'center', justifyContent: 'center' },
      name: { color: '#EDEDF2', fontSize: 16, fontWeight: '700' },
      amt: { color: '#8A8A96', fontSize: 13, marginTop: 3 },
      pct: { fontSize: 18, fontWeight: '800' },
      track: { height: 10, borderRadius: 5, backgroundColor: '#221E2A', overflow: 'hidden' },
      fill: { height: '100%', borderRadius: 5 },
    });
    

    Machine endpoints

    Open, CORS-enabled, no key. React Native is the default target; append ?target=swiftui where SwiftUI is available.