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.

    Nova — AI Assistant

    templateiosby @vp0

    A clean AI chat assistant with suggestion chips and a typing reply.

    #Dark #Chat #AI

    Works withClaude CodeCursorRorkLovablev0& any AI coding agent
    https://vp0.com/source/nova-ai-assistant
    npx vp0 add nova-ai-assistant --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

    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/nova-ai-assistant (machine-readable JSON manifest: https://api.vp0.com/designs/nova-ai-assistant/manifest). Design: "Nova — AI Assistant" — A clean AI chat assistant with suggestion chips and a typing reply.. Match the layout and styling exactly; it's an iOS UI starter, so add my own data/logic afterward.

    Integration steps
    This is an iOS app UI starter for Expo React Native ("Nova — AI Assistant").
    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
       - AssistantView.swift
    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

    Nova — AI Assistant preview 1

    Code · 1 file

    Download .zip
    App.tsx
    raw
    import React, { useState } from 'react';
    import { View, Text, ScrollView, Pressable, StyleSheet, SafeAreaView } from 'react-native';
    
    const CHIPS = ['Plan my week', 'Summarize this', 'Write an email', 'Brainstorm ideas'];
    
    export default function App() {
      const [msgs, setMsgs] = useState([
        { me: false, text: 'Hi! I am Nova. What can I help you with today?' },
        { me: true, text: 'Help me plan a focused work week.' },
        { me: false, text: 'Love it. Here is a simple plan: protect your mornings for deep work, batch meetings after lunch, and keep Fridays light for review.' },
        { me: true, text: 'Perfect, can you add reminders?' },
        { me: false, text: 'Done. I will nudge you 10 minutes before each deep-work block and at 4pm on Friday for your weekly review.' },
      ]);
      const ask = (q) => setMsgs((m) => [...m, { me: true, text: q }, { me: false, text: 'Great choice. Here is a quick plan to get you started, broken into three simple steps.' }]);
      return (
        <SafeAreaView style={s.safe}>
          <View style={s.head}>
            <View style={s.avatar}><Text style={{ fontSize: 18 }}>🤖</Text></View>
            <View><Text style={s.name}>Nova</Text><Text style={s.status}>● Online</Text></View>
          </View>
          <ScrollView contentContainerStyle={s.scroll} showsVerticalScrollIndicator={false}>
            {msgs.map((m, i) => (
              <View key={i} style={[s.row, m.me ? s.right : s.left]}>
                {!m.me && <View style={s.botDot}><Text style={{ fontSize: 13 }}>✨</Text></View>}
                <View style={[s.bubble, m.me ? s.me : s.bot]}><Text style={[s.text, m.me && { color: '#fff' }]}>{m.text}</Text></View>
              </View>
            ))}
          </ScrollView>
          <View style={s.chips}>
            {CHIPS.map((c) => (<Pressable key={c} onPress={() => ask(c)} style={s.chip}><Text style={s.chipText}>{c}</Text></Pressable>))}
          </View>
          <View style={s.composer}>
            <View style={s.input}><Text style={s.placeholder}>Message Nova</Text></View>
            <View style={s.send}><Text style={{ color: '#fff', fontWeight: '800' }}>↑</Text></View>
          </View>
        </SafeAreaView>
      );
    }
    
    const s = StyleSheet.create({
      safe: { flex: 1, backgroundColor: '#0A0F0D' },
      head: { flexDirection: 'row', alignItems: 'center', paddingTop: 56, paddingBottom: 14, paddingHorizontal: 20, borderBottomWidth: 1, borderBottomColor: '#15201C' },
      avatar: { width: 40, height: 40, borderRadius: 20, backgroundColor: '#10A37F22', alignItems: 'center', justifyContent: 'center', marginRight: 12 },
      name: { color: '#fff', fontSize: 17, fontWeight: '700' },
      status: { color: '#10A37F', fontSize: 13, marginTop: 2 },
      scroll: { padding: 18 },
      row: { flexDirection: 'row', alignItems: 'flex-end', marginBottom: 12 },
      left: { justifyContent: 'flex-start' },
      right: { justifyContent: 'flex-end' },
      botDot: { width: 26, height: 26, borderRadius: 13, backgroundColor: '#10A37F22', alignItems: 'center', justifyContent: 'center', marginRight: 8 },
      bubble: { maxWidth: '80%', borderRadius: 18, paddingVertical: 11, paddingHorizontal: 15 },
      bot: { backgroundColor: '#13201B', borderBottomLeftRadius: 5 },
      me: { backgroundColor: '#10A37F', borderBottomRightRadius: 5 },
      text: { color: '#DCE7E3', fontSize: 15, lineHeight: 21 },
      chips: { flexDirection: 'row', flexWrap: 'wrap', gap: 8, paddingHorizontal: 16, paddingBottom: 10 },
      chip: { backgroundColor: '#13201B', borderRadius: 16, paddingVertical: 9, paddingHorizontal: 14, borderWidth: 1, borderColor: '#1E3A31' },
      chipText: { color: '#7FD9C0', fontSize: 13, fontWeight: '600' },
      composer: { flexDirection: 'row', alignItems: 'center', padding: 16, gap: 12, borderTopWidth: 1, borderTopColor: '#15201C' },
      input: { flex: 1, height: 44, borderRadius: 22, backgroundColor: '#13201B', justifyContent: 'center', paddingHorizontal: 18 },
      placeholder: { color: '#5A6E68', fontSize: 15 },
      send: { width: 44, height: 44, borderRadius: 22, backgroundColor: '#10A37F', alignItems: 'center', justifyContent: 'center' },
    });
    

    Machine endpoints

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