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.

    Aero — Weather

    templateiosby @vp0

    A serene weather screen with current conditions, hourly, and the week.

    #Weather #Minimal #Gradient

    Works withClaude CodeCursorRorkLovablev0& any AI coding agent
    https://vp0.com/source/aero-weather
    npx vp0 add aero-weather --target swiftui
    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/aero-weather (machine-readable JSON manifest: https://api.vp0.com/designs/aero-weather/manifest). Design: "Aero — Weather" — A serene weather screen with current conditions, hourly, and the week.. 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 ("Aero — Weather").
    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
       - WeatherView.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

    Aero — Weather preview 1

    Code · 1 file

    Download .zip
    WeatherView.swift
    raw
    import SwiftUI
    
    struct Hour: Identifiable { let id = UUID(); let t: String; let icon: String; let deg: Int }
    struct Day: Identifiable { let id = UUID(); let name: String; let icon: String; let hi: Int; let lo: Int }
    
    struct WeatherView: View {
        let hourly: [Hour] = [
            .init(t: "Now", icon: "sun.max.fill", deg: 24), .init(t: "1PM", icon: "cloud.sun.fill", deg: 25),
            .init(t: "2PM", icon: "cloud.sun.fill", deg: 25), .init(t: "3PM", icon: "cloud.fill", deg: 24),
            .init(t: "4PM", icon: "cloud.fill", deg: 23), .init(t: "5PM", icon: "cloud.rain.fill", deg: 21)
        ]
        let week: [Day] = [
            .init(name: "Mon", icon: "sun.max.fill", hi: 26, lo: 17),
            .init(name: "Tue", icon: "cloud.sun.fill", hi: 24, lo: 16),
            .init(name: "Wed", icon: "cloud.rain.fill", hi: 20, lo: 14),
            .init(name: "Thu", icon: "cloud.sun.fill", hi: 23, lo: 15),
            .init(name: "Fri", icon: "sun.max.fill", hi: 27, lo: 18)
        ]
    
        var body: some View {
            ZStack {
                Color(red: 0.04, green: 0.14, blue: 0.25).ignoresSafeArea()
                ScrollView {
                    VStack(spacing: 24) {
                        VStack(spacing: 2) {
                            Text("Lisbon").font(.system(size: 30, weight: .regular)).foregroundColor(.white)
                            Text("24°").font(.system(size: 90, weight: .thin)).foregroundColor(.white)
                            Text("Sunny · feels like 26°").foregroundColor(Color(white: 0.7))
                            Text("H:27°  L:17°").foregroundColor(Color(white: 0.6))
                        }
                        HStack {
                            ForEach(hourly) { h in
                                VStack(spacing: 10) {
                                    Text(h.t).font(.footnote).foregroundColor(Color(white: 0.7))
                                    Image(systemName: h.icon).foregroundColor(.white).font(.title3)
                                    Text("\(h.deg)°").bold().foregroundColor(.white)
                                }.frame(maxWidth: .infinity)
                            }
                        }
                        .padding(18).background(Color.white.opacity(0.08)).cornerRadius(22)
    
                        VStack(spacing: 0) {
                            ForEach(week) { d in
                                HStack {
                                    Text(d.name).fontWeight(.medium).foregroundColor(.white).frame(width: 52, alignment: .leading)
                                    Image(systemName: d.icon).foregroundColor(.white).frame(width: 40)
                                    Spacer()
                                    Text("\(d.hi)°").bold().foregroundColor(.white)
                                }.padding(.vertical, 12)
                            }
                        }
                        .padding(.horizontal, 18).background(Color.white.opacity(0.08)).cornerRadius(22)
                    }
                    .padding(22)
                }
            }
        }
    }
    
    #Preview { WeatherView() }
    

    Machine endpoints

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