{"id":"vp0.aero-weather","docs":"This is an iOS app UI starter built with React Native. Paste the design link into your AI app builder (Claude Code, Rork, Lovable) and ask it to start from this design. Add your own backend/data logic. These are UI starters.","kind":"app_template","meta":{"com.vp0.kind":"app_template","com.vp0.category":"Weather","com.vp0.platform":"ios","com.vp0.contentId":"4d1dbc32-32d1-440d-88fb-e447de2b7034","com.vp0.simulator":{"target":"react-native","embedUrl":null,"provider":null,"entrypoint":"App.tsx","buildStatus":null,"simulatable":true},"com.vp0.sourceHash":"sha256:53cf838918aa522d8d0c52eec4917612262651bac66b23b1fe83a69294b793df","com.vp0.contentType":"template","com.vp0.sourceToken":"vp0_9330b27a95a48c5a301b48e3","com.vp0.defaultLanguage":"react-native","com.vp0.availableLanguages":["react-native","swiftui"]},"name":"aero-weather","slug":"aero-weather","tags":["Weather","Minimal","Gradient"],"type":"registry:block","files":[{"path":"App.tsx","type":"registry:page","rawUrl":"https://api.vp0.com/designs/aero-weather/raw?language=react-native&path=App.tsx","target":"app/App.tsx","content":"import React from 'react';\nimport { View, Text, ScrollView, StyleSheet, SafeAreaView } from 'react-native';\n\nconst HOURLY = [\n  { t: 'Now', i: '☀️', d: 24 }, { t: '1PM', i: '🌤️', d: 25 }, { t: '2PM', i: '⛅', d: 25 },\n  { t: '3PM', i: '⛅', d: 24 }, { t: '4PM', i: '🌥️', d: 23 }, { t: '5PM', i: '🌧️', d: 21 },\n];\nconst WEEK = [\n  { d: 'Mon', i: '☀️', hi: 26, lo: 17 }, { d: 'Tue', i: '⛅', hi: 24, lo: 16 },\n  { d: 'Wed', i: '🌧️', hi: 20, lo: 14 }, { d: 'Thu', i: '🌤️', hi: 23, lo: 15 }, { d: 'Fri', i: '☀️', hi: 27, lo: 18 },\n];\n\nexport default function App() {\n  return (\n    <SafeAreaView style={s.safe}>\n      <ScrollView contentContainerStyle={s.scroll} showsVerticalScrollIndicator={false}>\n        <View style={s.now}>\n          <Text style={s.city}>Lisbon</Text>\n          <Text style={s.temp}>24°</Text>\n          <Text style={s.cond}>Sunny · feels like 26°</Text>\n          <Text style={s.range}>H:27°  L:17°</Text>\n        </View>\n        <View style={s.hourCard}>\n          {HOURLY.map((h, i) => (\n            <View key={i} style={s.hour}>\n              <Text style={s.hourT}>{h.t}</Text>\n              <Text style={s.hourI}>{h.i}</Text>\n              <Text style={s.hourD}>{h.d}°</Text>\n            </View>\n          ))}\n        </View>\n        <View style={s.weekCard}>\n          {WEEK.map((w, i) => (\n            <View key={i} style={s.weekRow}>\n              <Text style={s.weekD}>{w.d}</Text>\n              <Text style={s.weekI}>{w.i}</Text>\n              <View style={s.weekBarWrap}>\n                <View style={[s.weekBar, { width: (w.hi - w.lo) * 8 + '%', marginLeft: (w.lo - 14) * 4 + '%' }]} />\n              </View>\n              <Text style={s.weekHi}>{w.hi}°</Text>\n            </View>\n          ))}\n        </View>\n      </ScrollView>\n    </SafeAreaView>\n  );\n}\n\nconst s = StyleSheet.create({\n  safe: { flex: 1, backgroundColor: '#0A2440' },\n  scroll: { padding: 22, paddingTop: 64 },\n  now: { alignItems: 'center', marginBottom: 30 },\n  city: { color: '#fff', fontSize: 30, fontWeight: '600' },\n  temp: { color: '#fff', fontSize: 96, fontWeight: '100', marginTop: 4 },\n  cond: { color: '#9CCBEF', fontSize: 17, marginTop: -8 },\n  range: { color: '#7FB4DC', fontSize: 15, marginTop: 8 },\n  hourCard: { flexDirection: 'row', justifyContent: 'space-between', backgroundColor: 'rgba(255,255,255,0.07)', borderRadius: 22, padding: 18, marginBottom: 18 },\n  hour: { alignItems: 'center', gap: 10 },\n  hourT: { color: '#9CCBEF', fontSize: 13, fontWeight: '600' },\n  hourI: { fontSize: 24 },\n  hourD: { color: '#fff', fontSize: 16, fontWeight: '700' },\n  weekCard: { backgroundColor: 'rgba(255,255,255,0.07)', borderRadius: 22, padding: 18 },\n  weekRow: { flexDirection: 'row', alignItems: 'center', paddingVertical: 12 },\n  weekD: { color: '#fff', fontSize: 16, fontWeight: '600', width: 52 },\n  weekI: { fontSize: 22, width: 40 },\n  weekBarWrap: { flex: 1, height: 6, backgroundColor: 'rgba(255,255,255,0.1)', borderRadius: 3, marginHorizontal: 12, overflow: 'hidden' },\n  weekBar: { height: 6, borderRadius: 3, backgroundColor: '#FBBF24' },\n  weekHi: { color: '#fff', fontSize: 16, fontWeight: '700', width: 40, textAlign: 'right' },\n});\n","language":"react-native"},{"path":"WeatherView.swift","type":"registry:page","rawUrl":"https://api.vp0.com/designs/aero-weather/raw?language=swiftui&path=WeatherView.swift","target":"app/WeatherView.swift","content":"import SwiftUI\n\nstruct Hour: Identifiable { let id = UUID(); let t: String; let icon: String; let deg: Int }\nstruct Day: Identifiable { let id = UUID(); let name: String; let icon: String; let hi: Int; let lo: Int }\n\nstruct WeatherView: View {\n    let hourly: [Hour] = [\n        .init(t: \"Now\", icon: \"sun.max.fill\", deg: 24), .init(t: \"1PM\", icon: \"cloud.sun.fill\", deg: 25),\n        .init(t: \"2PM\", icon: \"cloud.sun.fill\", deg: 25), .init(t: \"3PM\", icon: \"cloud.fill\", deg: 24),\n        .init(t: \"4PM\", icon: \"cloud.fill\", deg: 23), .init(t: \"5PM\", icon: \"cloud.rain.fill\", deg: 21)\n    ]\n    let week: [Day] = [\n        .init(name: \"Mon\", icon: \"sun.max.fill\", hi: 26, lo: 17),\n        .init(name: \"Tue\", icon: \"cloud.sun.fill\", hi: 24, lo: 16),\n        .init(name: \"Wed\", icon: \"cloud.rain.fill\", hi: 20, lo: 14),\n        .init(name: \"Thu\", icon: \"cloud.sun.fill\", hi: 23, lo: 15),\n        .init(name: \"Fri\", icon: \"sun.max.fill\", hi: 27, lo: 18)\n    ]\n\n    var body: some View {\n        ZStack {\n            Color(red: 0.04, green: 0.14, blue: 0.25).ignoresSafeArea()\n            ScrollView {\n                VStack(spacing: 24) {\n                    VStack(spacing: 2) {\n                        Text(\"Lisbon\").font(.system(size: 30, weight: .regular)).foregroundColor(.white)\n                        Text(\"24°\").font(.system(size: 90, weight: .thin)).foregroundColor(.white)\n                        Text(\"Sunny · feels like 26°\").foregroundColor(Color(white: 0.7))\n                        Text(\"H:27°  L:17°\").foregroundColor(Color(white: 0.6))\n                    }\n                    HStack {\n                        ForEach(hourly) { h in\n                            VStack(spacing: 10) {\n                                Text(h.t).font(.footnote).foregroundColor(Color(white: 0.7))\n                                Image(systemName: h.icon).foregroundColor(.white).font(.title3)\n                                Text(\"\\(h.deg)°\").bold().foregroundColor(.white)\n                            }.frame(maxWidth: .infinity)\n                        }\n                    }\n                    .padding(18).background(Color.white.opacity(0.08)).cornerRadius(22)\n\n                    VStack(spacing: 0) {\n                        ForEach(week) { d in\n                            HStack {\n                                Text(d.name).fontWeight(.medium).foregroundColor(.white).frame(width: 52, alignment: .leading)\n                                Image(systemName: d.icon).foregroundColor(.white).frame(width: 40)\n                                Spacer()\n                                Text(\"\\(d.hi)°\").bold().foregroundColor(.white)\n                            }.padding(.vertical, 12)\n                        }\n                    }\n                    .padding(.horizontal, 18).background(Color.white.opacity(0.08)).cornerRadius(22)\n                }\n                .padding(22)\n            }\n        }\n    }\n}\n\n#Preview { WeatherView() }\n","language":"swiftui"}],"notes":"This is an iOS app UI starter built with React Native. Paste the design link into your AI app builder (Claude Code, Rork, Lovable) and ask it to start from this design. Add your own backend/data logic. These are UI starters.","title":"Aero — Weather","assets":[{"url":"https://storage.vp0.com/vp0/covers/4d1dbc32-32d1-440d-88fb-e447de2b7034/e75acf35-0125-43f3-81c6-7cc09b65e9e1/full.webp","kind":"cover","lqip":"zNYFCwAoeAV3inaHGYWQYQg=","width":804,"height":1748,"variants":{"avif":"https://storage.vp0.com/vp0/covers/4d1dbc32-32d1-440d-88fb-e447de2b7034/e75acf35-0125-43f3-81c6-7cc09b65e9e1/avif.avif","card":"https://storage.vp0.com/vp0/covers/4d1dbc32-32d1-440d-88fb-e447de2b7034/e75acf35-0125-43f3-81c6-7cc09b65e9e1/card.webp","full":"https://storage.vp0.com/vp0/covers/4d1dbc32-32d1-440d-88fb-e447de2b7034/e75acf35-0125-43f3-81c6-7cc09b65e9e1/full.webp","thumb":"https://storage.vp0.com/vp0/covers/4d1dbc32-32d1-440d-88fb-e447de2b7034/e75acf35-0125-43f3-81c6-7cc09b65e9e1/thumb.webp"}},{"url":"https://storage.vp0.com/vp0/clips/23/bbd88c0b-2933-4094-8057-cef8980d01db/clip.mp4","kind":"video","variants":{"mp4":"https://storage.vp0.com/vp0/clips/23/bbd88c0b-2933-4094-8057-cef8980d01db/clip.mp4","webm":"https://storage.vp0.com/vp0/clips/23/bbd88c0b-2933-4094-8057-cef8980d01db/clip.webm","poster":"https://storage.vp0.com/vp0/clips/23/bbd88c0b-2933-4094-8057-cef8980d01db/poster.jpg"}}],"author":"@vp0","$schema":"https://api.vp0.com/schema/vp0-bundle.v1.json","license":null,"targets":[{"name":"react-native","entrypoint":"App.tsx"},{"name":"swiftui","entrypoint":"WeatherView.swift"}],"version":"1.0.0","category":"Weather","platform":"ios","createdAt":"2026-05-25T19:40:49.388Z","createdBy":"vp0","importUrl":"https://vp0.com/source/aero-weather","styleTags":["Minimal","Gradient"],"updatedAt":"2026-05-25T19:40:49.388Z","categories":["Weather"],"promptText":"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.","sourceHash":"sha256:53cf838918aa522d8d0c52eec4917612262651bac66b23b1fe83a69294b793df","contentType":"template","description":"A serene weather screen with current conditions, hourly, and the week.","manifestUrl":"https://api.vp0.com/designs/aero-weather/manifest","sourceToken":"vp0_9330b27a95a48c5a301b48e3","dependencies":{},"installHints":{"cli":"npx vp0 add aero-weather --target react-native","mcp":"claude mcp add vp0 -- npx -y vp0-mcp","shadcn":"npx shadcn@latest add https://api.vp0.com/r/aero-weather.json","openInV0":"https://v0.dev/chat/api/open?url=https://api.vp0.com/r/aero-weather.json","defaultTarget":"react-native"},"schemaVersion":"vp0-bundle.v1","aiInstructions":"This is an iOS app UI starter for Expo React Native (\"Aero — Weather\").\nIntegrate it into the user's Expo project as follows:\n1. No extra dependencies are required.\n2. Create the following file(s) and paste each provided \"content\" exactly:\n   - App.tsx\n   - WeatherView.swift\n3. 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.\n4. These are UI starters: reproduce the visual layout faithfully, then wire the user's own data/navigation/backend afterward.","componentsUsed":[],"installCommand":null,"defaultLanguage":"react-native","devDependencies":{},"availableLanguages":["react-native","swiftui"],"registryDependencies":[]}