Journal

Tag

#swiftui

Apple HealthKit Pedometer UI: Free Step Counter Templates: a glass iPhone app-grid icon on a mint and teal gradient
Guides 6 min read

Apple HealthKit Pedometer UI: Free Step Counter Templates

Build a step counter UI for Apple HealthKit: HealthKit for daily totals and charts, Core Motion's CMPedometer for the live number, from a free template.

Lawrence Arya · July 1, 2026
Face ID Biometric Login Setup with Local App State (SwiftUI): a glowing iPhone home-screen icon on a purple and blue gradient
Guides 6 min read

Face ID Biometric Login Setup with Local App State (SwiftUI)

Wire Face ID login in SwiftUI: LocalAuthentication for the biometric check, one in-memory isUnlocked flag for state, and the session token in the Keychain.

Lawrence Arya · July 1, 2026
Farcaster Frame Native iOS Renderer: The Build Guide: a glass iPhone app-grid icon on a mint and teal gradient
Guides 6 min read

Farcaster Frame Native iOS Renderer: The Build Guide

Build a native iOS renderer for Farcaster Frames: v1 Frames render fully native from meta tags, v2 Mini Apps run in a WKWebView with a postMessage bridge.

Lawrence Arya · July 1, 2026
Convert a Bubble App to Native iOS Using AI: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 7 min read

Convert a Bubble App to Native iOS Using AI

How to convert a Bubble app to native iOS with AI: skip the WebView wrapper Apple rejects, rebuild the screens natively, and reuse Bubble's Data API for the backend.

Lawrence Arya · June 27, 2026
Dumb Phone Mode Toggle with Animation for iOS: the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 7 min read

Dumb Phone Mode Toggle with Animation for iOS

Build a dumb phone mode toggle for iOS: a deliberate SwiftUI switch animation, a stripped minimal launcher, plus the supported way to drive grayscale and Focus.

Lawrence Arya · June 27, 2026
Build a Formula 1 Live Telemetry Dashboard UI in SwiftUI: the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 7 min read

Build a Formula 1 Live Telemetry Dashboard UI in SwiftUI

Build a live F1 telemetry dashboard in SwiftUI: a streaming data feed over WebSocket, Combine to drive state, and Swift Charts for speed, throttle, and gaps.

Lawrence Arya · June 27, 2026
Forex Position Size Calculator UI for iOS: a glass iPhone UI wireframe icon on a holographic purple gradient
Guides 6 min read

Forex Position Size Calculator UI for iOS

Build a forex position size calculator for iOS: risk-per-trade math done with Decimal for precision, currency-formatted output, and an honest, not-advice framing.

Lawrence Arya · June 27, 2026
GDPR Right to Be Forgotten: A SwiftUI Erasure Flow: the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 7 min read

GDPR Right to Be Forgotten: A SwiftUI Erasure Flow

Build a GDPR right-to-be-forgotten flow in SwiftUI: an honest in-app erasure request, real backend deletion, and the App Store account-deletion rule it must satisfy.

Lawrence Arya · June 27, 2026
How to Fix the Google Sign-In Popup Freeze on iOS: a glass iPhone app-grid icon on a mint and teal gradient
Guides 7 min read

How to Fix the Google Sign-In Popup Freeze on iOS

The Google Sign-In popup freezes on iOS when the auth session is not retained or the presenting controller is wrong. Here is the reliable fix and why it happens.

Lawrence Arya · June 27, 2026
Ham Radio Frequency Waterfall Display UI for iOS: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 7 min read

Ham Radio Frequency Waterfall Display UI for iOS

Build a ham radio waterfall display on iOS: run an FFT with the Accelerate framework, scroll a spectrogram with SwiftUI Canvas, and feed it from audio or an SDR.

Lawrence Arya · June 27, 2026
A Human-in-the-Loop Approval Swipe UI for AI Agents: a glass app tile showing the VP0 logo on a pink and blue gradient
Guides 7 min read

A Human-in-the-Loop Approval Swipe UI for AI Agents

Design a swipe-to-approve UI for AI agent actions: a queue of pending actions, each shown with its real effect, so a human gates consequential moves before they run.

Lawrence Arya · June 27, 2026
iDEAL Payments With Stripe and Apple Pay in SwiftUI: a glass iPhone app-grid icon on a mint and teal gradient
Guides 7 min read

iDEAL Payments With Stripe and Apple Pay in SwiftUI

Add iDEAL payments to a SwiftUI app with Stripe and Apple Pay: the bank-redirect flow, why a webhook confirms the sale, and the physical-goods rule that allows it.

Lawrence Arya · June 27, 2026
Build a Mapbox 3D City Navigation UI in SwiftUI: the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Guides 7 min read

Build a Mapbox 3D City Navigation UI in SwiftUI

Build a 3D city navigation UI in SwiftUI with Mapbox: extruded buildings, a pitched chase camera, and day and night styles, wrapped for SwiftUI and kept smooth.

Lawrence Arya · June 27, 2026
Apple Intelligence Glow Border Effect Code for iOS: a glowing iPhone home-screen icon on a purple and blue gradient
Guides 8 min read

Apple Intelligence Glow Border Effect Code for iOS

Recreate the Apple Intelligence glow border in SwiftUI with an animated angular-gradient stroke or a Metal shader. Here is the code, the tradeoffs, and the limits.

Lawrence Arya · June 18, 2026
Bluetooth Hearing Aid EQ Mixer UI for iOS: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 7 min read

Bluetooth Hearing Aid EQ Mixer UI for iOS

Build a Bluetooth hearing aid EQ mixer UI for iOS in SwiftUI, bound to AVAudioUnitEQ. Here is the audio path, the band sliders, and what to keep honest.

Lawrence Arya · June 18, 2026
Bluetooth Mesh Network Chat Interface for iOS: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 7 min read

Bluetooth Mesh Network Chat Interface for iOS

Build a Bluetooth mesh network chat interface for iOS with MultipeerConnectivity. Here is the transport choice, the message UI, and the states it must show.

Lawrence Arya · June 18, 2026
Build an Anonymous Voice Changer Pitch Slider on iOS: a phone toggle icon surrounded by location, calendar, settings, wallet and chart app icons on a coral gradient
Guides 10 min read

Build an Anonymous Voice Changer Pitch Slider on iOS

Route the mic through AVAudioUnitTimePitch and bind a slider to its pitch in cents. Here is the audio graph, the UI, and what anonymous really means.

Lawrence Arya · June 11, 2026
AppSheet to Native iOS App: How to Convert with AI: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 10 min read

AppSheet to Native iOS App: How to Convert with AI

There is no one-click AppSheet to Swift exporter. Here is the realistic AI path: rebuild each view as a native screen and re-point it at your data.

Lawrence Arya · June 11, 2026
Build an Autonomous Agent Live Log Terminal UI on iOS: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 10 min read

Build an Autonomous Agent Live Log Terminal UI on iOS

A streaming, monospaced log that pins to the newest line, then yields when you scroll up. Here is the SwiftUI ScrollViewReader build, with a capped buffer.

Lawrence Arya · June 11, 2026
Best Fonts for Mobile Apps in 2026 (SwiftUI Guide): a reflective 3D App Store icon on a blue and purple gradient
Guides 10 min read

Best Fonts for Mobile Apps in 2026 (SwiftUI Guide)

SF Pro is still the best default for iOS in 2026: free, Dynamic Type ready, and tuned for screens. Here is when a custom font is worth it, and how to set it up.

Lawrence Arya · June 11, 2026
Color Blind Mode Toggle UI for iOS Apps: A Guide: a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 10 min read

Color Blind Mode Toggle UI for iOS Apps: A Guide

A good color blind mode stops relying on color alone, not just recolors the screen. Here is how to build the toggle, respect iOS settings, and add non-color cues.

Lawrence Arya · June 11, 2026
Build a Duolingo-Style Learning Tree UI in SwiftUI: a glass iPhone app-grid icon on a mint and teal gradient
Guides 10 min read

Build a Duolingo-Style Learning Tree UI in SwiftUI

The Duolingo learning tree is a winding path of lesson nodes with states. Here is how to build it in SwiftUI from a data model, with the path, states, and motion.

Lawrence Arya · June 11, 2026
How to Inject a SwiftUI View Inside a Capacitor App: the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 9 min read

How to Inject a SwiftUI View Inside a Capacitor App

A Capacitor plugin plus UIHostingController puts real SwiftUI in front of the WebView. Here is the bridge contract, the three shapes, and the exit-path rule.

Lawrence Arya · June 10, 2026
Solana Blink Mobile Wrapper UI in SwiftUI: How to Build It: a glowing iPhone home-screen icon on a purple and blue gradient
Guides 10 min read

Solana Blink Mobile Wrapper UI in SwiftUI: How to Build It

A Solana blink unfurls a link into an on-chain action. Here is how to build the native SwiftUI wrapper that renders it, with signing left to the wallet.

Lawrence Arya · June 10, 2026
Spline 3D Model Background in SwiftUI: A Practical Guide: a reflective 3D App Store icon on a blue and purple gradient
Guides 9 min read

Spline 3D Model Background in SwiftUI: A Practical Guide

A Spline scene behind a SwiftUI interface looks alive because the GPU draws it live. Here is the embed, the performance caps, and when to choose SceneKit.

Lawrence Arya · June 10, 2026
SwiftUI App Intents Template for Apple Intelligence Apps: a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 9 min read

SwiftUI App Intents Template for Apple Intelligence Apps

App Intents are how Apple Intelligence, Siri, Shortcuts, and Spotlight reach an app. Here is the template structure that gives an agent the right pattern.

Lawrence Arya · June 10, 2026
SwiftUI Code Audit Service: What to Buy and What It Costs: the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 9 min read

SwiftUI Code Audit Service: What to Buy and What It Costs

A SwiftUI code audit is judgment as a deliverable: a ranked map of what is fragile in your AI-built app. Here is what to buy, prepare, and expect to pay for.

Lawrence Arya · June 10, 2026
Zaawansowany SwiftUI tutorial: advanced iOS UI with AI: a glass iPhone UI wireframe icon on a holographic purple gradient
Guides 11 min read

Zaawansowany SwiftUI tutorial: advanced iOS UI with AI

Advanced (zaawansowany) SwiftUI comes down to state, performance, navigation, and animation. Here is how to get each right and build faster with AI.

Lawrence Arya · June 10, 2026
Swipe to Approve AI Actions in SwiftUI: The Approval UI: a reflective 3D App Store icon on a blue and purple gradient
Guides 9 min read

Swipe to Approve AI Actions in SwiftUI: The Approval UI

An AI agent proposes; the human commits. Here is the swipe-to-approve pattern in SwiftUI: thresholds, haptics, honest states, and the accessibility twin.

Lawrence Arya · June 10, 2026
SwiftUI ViewInspector tests with an AI prompt: a guide: the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Workflows 10 min read

SwiftUI ViewInspector tests with an AI prompt: a guide

ViewInspector unit tests SwiftUI views without the simulator. Here is how to write them, how to prompt AI to generate them, and how to keep them honest.

Lawrence Arya · June 10, 2026
Tarot Card Shuffle Animation in SwiftUI: Make It Feel Real: a reflective 3D App Store icon on a blue and purple gradient
Guides 10 min read

Tarot Card Shuffle Animation in SwiftUI: Make It Feel Real

In a tarot app the shuffle is the ritual, and the ritual is the product. Here is the SwiftUI choreography: stagger, arcs, springs, and an honest draw.

Lawrence Arya · June 10, 2026
Terminal Log Auto-Scroll UI in SwiftUI: Smart Following: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 9 min read

Terminal Log Auto-Scroll UI in SwiftUI: Smart Following

A log console must follow the tail and release it the instant the user scrolls up. Here is the smart-follow pattern in SwiftUI, with the firehose budget.

Lawrence Arya · June 10, 2026
Twilio video call interface in SwiftUI: a practical build: the App Store logo on a glass tile over a blue gradient with bubbles
Guides 10 min read

Twilio video call interface in SwiftUI: a practical build

Build a video call interface in SwiftUI: a provider-agnostic tile grid and controls, secure tokens, and what to use now that Twilio Video is winding down.

Lawrence Arya · June 10, 2026
iOS UI Components That Pass WCAG AAA: What It Really Takes: a reflective 3D App Store icon on a blue and purple gradient
Guides 9 min read

iOS UI Components That Pass WCAG AAA: What It Really Takes

AAA is a per-criterion achievement, not a site-wide badge. Here is which WCAG AAA criteria iOS components can truly meet, and how to verify the claim.

Lawrence Arya · June 10, 2026
Vagus nerve breathing pacer UI in SwiftUI: a calm build: a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 10 min read

Vagus nerve breathing pacer UI in SwiftUI: a calm build

Build a breathing pacer in SwiftUI: a circle that breathes, a phase timer, optional HealthKit logging, and honest, accessible wellness copy.

Lawrence Arya · June 10, 2026
visionOS glass effect in SwiftUI for iOS: get the look: a glowing iPhone home-screen icon on a purple and blue gradient
Guides 10 min read

visionOS glass effect in SwiftUI for iOS: get the look

The visionOS glassBackgroundEffect is visionOS only. Here is how to get the same frosted glass look on iOS with Material and iOS 26's glassEffect.

Lawrence Arya · June 10, 2026
visionOS Tab Bar Clone for iPad in SwiftUI: Worth It?: a glowing iPhone home-screen icon on a purple and blue gradient
Guides 9 min read

visionOS Tab Bar Clone for iPad in SwiftUI: Worth It?

The visionOS tab bar is a floating glass ornament, and iPad can wear it. Here is the SwiftUI build: capsule, expansion, selection morph, and the honest cost.

Lawrence Arya · June 10, 2026
Voicemail Visualizer and Scrubber UI in SwiftUI: The Build: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 9 min read

Voicemail Visualizer and Scrubber UI in SwiftUI: The Build

A voicemail visualizer exists to make messages faster to triage: a real waveform, a generous scrubber, and a transcript that doubles as a second scrubber.

Lawrence Arya · June 10, 2026
watchOS 12 water tracker app UI: build a hydration tracker: the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Guides 10 min read

watchOS 12 water tracker app UI: build a hydration tracker

Build a watchOS water tracker UI: one-tap quick-add, a glanceable ring, Digital Crown amounts, HealthKit logging, and a complication that logs from the face.

Lawrence Arya · June 10, 2026
WCAG compliant color palette in SwiftUI: a practical build: the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 11 min read

WCAG compliant color palette in SwiftUI: a practical build

Build a WCAG compliant color palette in SwiftUI: the contrast ratios, semantic asset colors with dark and high-contrast variants, and signals beyond color.

Lawrence Arya · June 10, 2026
WeChat mini program navigation in SwiftUI: the capsule: a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 10 min read

WeChat mini program navigation in SwiftUI: the capsule

Recreate WeChat mini program navigation in SwiftUI: the floating top-right capsule, a flat five-tab bar, and minimal page navigation that still feels native.

Lawrence Arya · June 10, 2026
XR fitness app companion UI for iOS: the SwiftUI screens: the App Store logo on a glass tile over a blue gradient with bubbles
Guides 10 min read

XR fitness app companion UI for iOS: the SwiftUI screens

Build the iOS companion for an XR fitness app: setup, live HealthKit metrics, summary, and history that stay in sync with the headset workout.

Lawrence Arya · June 10, 2026
Yandex Go style taxi booking UI in SwiftUI: the full flow: a glass iPhone app-grid icon on a mint and teal gradient
Guides 11 min read

Yandex Go style taxi booking UI in SwiftUI: the full flow

Build a Yandex Go style taxi booking UI in SwiftUI: a MapKit map, tariff cards, a booking state machine, and payments routed safely through a certified provider.

Lawrence Arya · June 10, 2026
Build a Stock Market Heat Map Grid UI in SwiftUI: a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 9 min read

Build a Stock Market Heat Map Grid UI in SwiftUI

A market heat map colors and sizes tiles by gain and market cap. Here is how to build the stock market heat map grid in SwiftUI, with an accessible color scale.

Lawrence Arya · June 9, 2026
Apple Pay + Stripe SwiftUI Template: What to Know: the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Guides 8 min read

Apple Pay + Stripe SwiftUI Template: What to Know

What you sell decides how you charge: Apple Pay plus Stripe is for physical goods and services. Here is the SwiftUI template an AI agent should build from.

Lawrence Arya · June 8, 2026
The Best AI Builder for iOS Widgets: An Honest Guide: the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Guides 9 min read

The Best AI Builder for iOS Widgets: An Honest Guide

iOS widgets are SwiftUI-only, so the best AI builder is one that writes Swift. Here is how Cursor, Claude Code, Rork, and Lovable actually compare for widget work.

Lawrence Arya · June 8, 2026
Build a Booking.com-Style Availability Calendar in SwiftUI: a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 8 min read

Build a Booking.com-Style Availability Calendar in SwiftUI

A Booking.com-style availability picker is more than a date picker. Here is how to build the availability calendar in SwiftUI, with real open and booked dates.

Lawrence Arya · June 8, 2026
Build a Buienradar-Style Rain Map Overlay in SwiftUI: a glass iPhone UI wireframe icon on a holographic purple gradient
Guides 8 min read

Build a Buienradar-Style Rain Map Overlay in SwiftUI

A rain radar is colored precipitation tiles over a map with a scrubbable timeline. Here is how to build the Buienradar-style rain map overlay in SwiftUI.

Lawrence Arya · June 8, 2026
Convert a Figma Prototype to a Working iOS App With AI: a reflective 3D App Store icon on a blue and purple gradient
Guides 8 min read

Convert a Figma Prototype to a Working iOS App With AI

A Figma prototype is visuals, not an app, and AI reads it as web. Here is how the Figma-to-iOS paths really compare, and the cleanest way to get native code.

Lawrence Arya · June 8, 2026
Build an Iron Dome-Style Critical Alert App in SwiftUI: the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Guides 7 min read

Build an Iron Dome-Style Critical Alert App in SwiftUI

An Iron Dome-style alert app is a critical public-safety UI. Here is how to build the full-screen alert, the take-cover countdown, and the region map in SwiftUI.

Lawrence Arya · June 8, 2026
Build a Pet Vaccination Record PDF Generator on iOS: the App Store logo on a glass tile over a blue gradient with bubbles
Guides 9 min read

Build a Pet Vaccination Record PDF Generator on iOS

Generate a real, paginated PDF of a pet's vaccination records, not a screenshot. Here is how to build the record PDF generator UI on iOS with PDFKit.

Lawrence Arya · June 8, 2026
Build a Sideloading iOS App Install Animation in SwiftUI: a glass iPhone UI wireframe icon on a holographic purple gradient
Guides 8 min read

Build a Sideloading iOS App Install Animation in SwiftUI

In the EU, an alt-marketplace install is a real, system-gated flow. Here is how to build the sideloading install animation in SwiftUI, honestly.

Lawrence Arya · June 8, 2026
Build a Smooth, Scrolling Social Media Feed in SwiftUI: a glass iPhone UI wireframe icon on a holographic purple gradient
Guides 6 min read

Build a Smooth, Scrolling Social Media Feed in SwiftUI

A social media feed in SwiftUI is a scrolling list of post cards. Here is how to build it so it stays smooth with images, likes, and infinite scroll.

Lawrence Arya · June 8, 2026
Build a Sora-Style AI Video Progress Bar in SwiftUI: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 9 min read

Build a Sora-Style AI Video Progress Bar in SwiftUI

AI video generation is slow and server-side, so honest progress beats a fake percentage. Here is how to build the Sora-style progress UI in SwiftUI.

Lawrence Arya · June 8, 2026
Build a Spatial Video Recording Camera UI in SwiftUI: the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Guides 6 min read

Build a Spatial Video Recording Camera UI in SwiftUI

Spatial video is stereoscopic 3D recorded on iPhone Pro and Vision Pro. Here is how to build the spatial video recording camera UI in SwiftUI with capture guidance.

Lawrence Arya · June 8, 2026
Build a Starlink Dish Alignment Compass UI in SwiftUI: a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 6 min read

Build a Starlink Dish Alignment Compass UI in SwiftUI

A dish alignment compass aims an antenna using the phone's heading and tilt. Here is how to build the Starlink dish alignment compass UI in SwiftUI with two sensors.

Lawrence Arya · June 8, 2026
Use Apple Intelligence On-Device Models in SwiftUI: a reflective 3D App Store icon on a blue and purple gradient
Guides 6 min read

Use Apple Intelligence On-Device Models in SwiftUI

Apple Intelligence lets a SwiftUI app call an on-device model with the Foundation Models framework. Here is a working example, with the honest limits included.

Lawrence Arya · June 8, 2026
Build a Custom Keyboard Extension Template in SwiftUI: a glass app tile showing the VP0 logo on a pink and blue gradient
Guides 7 min read

Build a Custom Keyboard Extension Template in SwiftUI

A custom keyboard is an app extension with real constraints. Here is how to build a custom keyboard extension in SwiftUI, from the key layout to Full Access.

Lawrence Arya · June 8, 2026
macOS Catalyst App Template: Catalyst or Native?: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 8 min read

macOS Catalyst App Template: Catalyst or Native?

Catalyst, native macOS, or Designed for iPad: the choice is effort versus Mac feel. Here is how to decide and build a Mac-native Catalyst app template.

Lawrence Arya · June 8, 2026
Build a SwiftUI Photo Gallery Grid with Pinch to Zoom: a glass iPhone app-grid icon on a mint and teal gradient
Guides 6 min read

Build a SwiftUI Photo Gallery Grid with Pinch to Zoom

A SwiftUI photo gallery has two pinch gestures: pinch the grid to change density, pinch a photo to zoom. Here is how to build both with LazyVGrid and bounded zoom.

Lawrence Arya · June 8, 2026
Build a TikTok-Style Vertical Video Pager in SwiftUI: a glowing iPhone home-screen icon on a purple and blue gradient
Guides 8 min read

Build a TikTok-Style Vertical Video Pager in SwiftUI

A TikTok pager's hard part is player management, not the swipe. Here is how to build the vertical video pager in SwiftUI without overlapping audio or lag.

Lawrence Arya · June 8, 2026
What a tvOS Sports Scoreboard App UI Kit Needs: a phone toggle icon surrounded by location, calendar, settings, wallet and chart app icons on a coral gradient
Guides 8 min read

What a tvOS Sports Scoreboard App UI Kit Needs

Apple TV has no touch, so the focus engine and a 10-foot view change everything. Here is what a tvOS sports scoreboard UI kit needs, and where to get one.

Lawrence Arya · June 8, 2026
Build a visionOS-Style Window and Drag Bar on iOS: a glass iPhone UI wireframe icon on a holographic purple gradient
Guides 8 min read

Build a visionOS-Style Window and Drag Bar on iOS

On visionOS the window drag bar is system chrome you do not draw. Here is how to replicate the visionOS window look on iOS, and what is actually real.

Lawrence Arya · June 8, 2026
Build a WHOOP-Style Recovery Score Dial in SwiftUI: a reflective 3D App Store icon on a blue and purple gradient
Guides 9 min read

Build a WHOOP-Style Recovery Score Dial in SwiftUI

A WHOOP-style recovery dial is a circular gauge, but the score behind it is a derived metric. Here is how to build the recovery score radial dial in SwiftUI.

Lawrence Arya · June 8, 2026
Apple External Purchase Link Modal UI in SwiftUI: The Build: a reflective 3D App Store icon on a blue and purple gradient
Guides 6 min read

Apple External Purchase Link Modal UI in SwiftUI: The Build

The link-out door is open but regional: eligibility-gated ExternalPurchaseLink, a trust-handoff modal with visible domain and price, and both paths shipped forever.

Lawrence Arya · June 7, 2026
Apple HealthKit Intermittent Fasting Timer Ring in SwiftUI: a phone toggle icon surrounded by location, calendar, settings, wallet and chart app icons on a coral gradient
Guides 6 min read

Apple HealthKit Intermittent Fasting Timer Ring in SwiftUI

A date-anchored ring that times the window honestly: TimelineView and trimmed circles, HealthKit correlation without a fasting type, and guardrails as features.

Lawrence Arya · June 7, 2026
Apple Intelligence Siri Overlay Clone in SwiftUI: the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Guides 5 min read

Apple Intelligence Siri Overlay Clone in SwiftUI

The system overlay has no API, but the grammar is buildable: layered gradient strokes, a layerEffect shader for the fluid motion, and a glow that tells the truth.

Lawrence Arya · June 7, 2026
Cursor AI for Native SwiftUI: A Mobile Tutorial: a glowing iPhone home-screen icon on a purple and blue gradient
Guides 5 min read

Cursor AI for Native SwiftUI: A Mobile Tutorial

Cursor writes, Xcode builds. The honest SwiftUI workflow keeps each tool in its lane and treats the green Xcode build as proof, not the AI's confidence.

Lawrence Arya · June 7, 2026
Floating Keyboard Avoidance UI on iPad: The Honest Fix: the App Store logo on a glass tile over a blue gradient with bubbles
Guides 6 min read

Floating Keyboard Avoidance UI on iPad: The Honest Fix

The iPad has four keyboards and three break height math. UIKeyboardLayoutGuide, scroll-to-reveal, and when the right avoidance is none at all.

Lawrence Arya · June 7, 2026
FlutterFlow Custom Action to SwiftUI Export: The Honest Answer: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 6 min read

FlutterFlow Custom Action to SwiftUI Export: The Honest Answer

FlutterFlow builds Flutter and exports Dart, not SwiftUI. Wanting SwiftUI is a stack decision with three honest paths, not an export button that does not exist.

Lawrence Arya · June 7, 2026
Golf GPS Rangefinder Map UI in SwiftUI: The Real Build: the App Store logo on a glass tile over a blue gradient with bubbles
Guides 5 min read

Golf GPS Rangefinder Map UI in SwiftUI: The Real Build

Three numbers in sunlight-grade type, course data as the moat, and a competition mode the rules actually require: the golf GPS app golfers keep.

Lawrence Arya · June 7, 2026
Google Sign-In Button in SwiftUI: Code and the Contracts: a reflective 3D App Store icon on a blue and purple gradient
Guides 5 min read

Google Sign-In Button in SwiftUI: Code and the Contracts

The branding rules, the Apple 4.8 sibling requirement, and the ID-token verification that makes it real: the Google button without the rejection.

Lawrence Arya · June 7, 2026
Helium Hotspot Network Diagnostic App UI: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 5 min read

Helium Hotspot Network Diagnostic App UI

A monitoring and placement tool, not the hotspot's brain: glanceable status, a coverage map that fixes placement, and rewards shown honestly, never hyped.

Lawrence Arya · June 7, 2026
Hire a SwiftUI Developer to Fix AI Code: When It's Worth It: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 6 min read

Hire a SwiftUI Developer to Fix AI Code: When It's Worth It

Hire when the problem is native, subtle, or release-blocking. You are buying judgment, not hands, and the cost is the archaeology, so bring a scoped bug.

Lawrence Arya · June 7, 2026
Horizontal Calendar Scroll in SwiftUI: The Date Strip: the App Store logo on a glass tile over a blue gradient with bubbles
Guides 5 min read

Horizontal Calendar Scroll in SwiftUI: The Date Strip

viewAligned snapping, windowed date ranges, a month label that follows the scroll, and the ring-versus-fill rule that keeps today and selection honest.

Lawrence Arya · June 7, 2026
Hotel Room Key NFC Unlock UI in SwiftUI: The Real Routes: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 5 min read

Hotel Room Key NFC Unlock UI in SwiftUI: The Real Routes

iOS apps cannot emulate key cards: Wallet partnerships tap, vendor BLE SDKs unlock in-app, and the button only says unlocked when the lock does.

Lawrence Arya · June 7, 2026
Image Outpainting Brush Tool UI in SwiftUI: the App Store logo on a glass tile over a blue gradient with bubbles
Guides 6 min read

Image Outpainting Brush Tool UI in SwiftUI

The model generates; the app builds the spec. A PencilKit mask layer, feathered edges as the quality lever, and cost shown before every tap.

Lawrence Arya · June 7, 2026
iMessage Reply Bubble Physics in SwiftUI: The Real Spring: a glass iPhone app-grid icon on a mint and teal gradient
Guides 5 min read

iMessage Reply Bubble Physics in SwiftUI: The Real Spring

Animate scale and offset not the frame, one restrained spring with sent springier than received, and a tail only on the last bubble of a run.

Lawrence Arya · June 7, 2026
Interactive Solar System 3D Viewer in SwiftUI: a phone toggle icon surrounded by location, calendar, settings, wallet and chart app icons on a coral gradient
Guides 5 min read

Interactive Solar System 3D Viewer in SwiftUI

RealityView entities, orbits as pivot rotations, NASA textures, and the scale cheat you must pick on purpose: the 3D solar system that stays smooth.

Lawrence Arya · June 7, 2026
iOS Context Menu Long-Press Blur in SwiftUI: a glass iPhone app-grid icon on a mint and teal gradient
Guides 6 min read

iOS Context Menu Long-Press Blur in SwiftUI

The native .contextMenu gives the lift, blur, and haptic for free. Build custom only when it is not a menu, and drive all three layers from one spring.

Lawrence Arya · June 7, 2026
Dynamic Island Live Activity for an AI Agent in SwiftUI: a phone toggle icon surrounded by location, calendar, settings, wallet and chart app icons on a coral gradient
Guides 6 min read

Dynamic Island Live Activity for an AI Agent in SwiftUI

An autonomous agent is the perfect Live Activity: a remote-controlled status mirror, push-updated on real transitions, with one honest control: Stop.

Lawrence Arya · June 7, 2026
Desktop-Class iPad Navigation with NavigationSplitView: a glass app tile showing the VP0 logo on a pink and blue gradient
Guides 5 min read

Desktop-Class iPad Navigation with NavigationSplitView

Stop shipping a stretched iPhone app: NavigationSplitView's adaptive columns, selection-driven detail, and the keyboard and pointer support that make it pro.

Lawrence Arya · June 7, 2026
Kakao Map API Custom Marker UI in SwiftUI: a glowing iPhone home-screen icon on a purple and blue gradient
Guides 6 min read

Kakao Map API Custom Marker UI in SwiftUI

Korea uses Kakao Map, not Apple Maps: bridge the UIKit SDK with UIViewRepresentable, render markers that carry meaning, and cluster at scale.

Lawrence Arya · June 7, 2026
KakaoTalk Chat UI Clone in SwiftUI: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 6 min read

KakaoTalk Chat UI Clone in SwiftUI

The yellow-brown palette, left bubbles with names, the per-message unread count, and an honest message-state model: KakaoTalk's grammar, cloned right.

Lawrence Arya · June 7, 2026
Klarna Checkout UI Widget in SwiftUI: The Honest Build: a glass iPhone app-grid icon on a mint and teal gradient
Guides 6 min read

Klarna Checkout UI Widget in SwiftUI: The Honest Build

You render the option and the disclosure; Klarna renders the credit. Placements-API numbers, webhook confirmation, and BNPL cost shown, always.

Lawrence Arya · June 7, 2026
Lime Scooter QR Unlock Scanner UI in SwiftUI: a reflective 3D App Store icon on a blue and purple gradient
Guides 5 min read

Lime Scooter QR Unlock Scanner UI in SwiftUI

The scanner is the easy half. The unlock state machine, where billing starts only on the scooter's confirmation, is the product.

Lawrence Arya · June 7, 2026
Loyalty Punch-Card Stamp Animation in SwiftUI: the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 6 min read

Loyalty Punch-Card Stamp Animation in SwiftUI

The stamp is the product: a spring with overshoot, a resting tilt, and a haptic thunk, on a count the server owns and the merchant grants.

Lawrence Arya · June 7, 2026
Macronutrient Barcode Scanner with Pie Chart UI: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 6 min read

Macronutrient Barcode Scanner with Pie Chart UI

Scan is the cheap step. The work is the food database, the per-100g-to-portion math, and a macro pie that is honest about parts of a whole.

Lawrence Arya · June 7, 2026
Medical Inventory Barcode Scanner UI in SwiftUI: the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 6 min read

Medical Inventory Barcode Scanner UI in SwiftUI

The unit is the lot, not the product: parse GS1 expiry and batch from one scan, sort by expiry, and identify recalled lots a count-only system never could.

Lawrence Arya · June 7, 2026
Midjourney-Style Image Grid Selector UI in SwiftUI: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 6 min read

Midjourney-Style Image Grid Selector UI in SwiftUI

The grid is the decision screen: each cell a state machine, tap-to-focus selection, first-class re-roll, and honesty about cost, wait, and failures.

Lawrence Arya · June 7, 2026
Multiplayer Game Voice Chat Overlay in SwiftUI: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 6 min read

Multiplayer Game Voice Chat Overlay in SwiftUI

The game is the content, the overlay is a passenger: speaking-reactive tiles from real audio, instant mute, push-to-talk, and a voice SDK over AVAudioSession.

Lawrence Arya · June 7, 2026
Native iOS Settings Page Boilerplate in SwiftUI: a phone toggle icon surrounded by location, calendar, settings, wallet and chart app icons on a coral gradient
Guides 6 min read

Native iOS Settings Page Boilerplate in SwiftUI

Settings is review-critical and AI builders generate it worst: a grouped native List, persisted toggles, required account-deletion and legal rows, done right.

Lawrence Arya · June 7, 2026
Is NativeWind v4 a SwiftUI Alternative?: a reflective 3D App Store icon on a blue and purple gradient
Guides 5 min read

Is NativeWind v4 a SwiftUI Alternative?

They solve different problems: NativeWind styles React Native, SwiftUI is native iOS. The real choice is cross-platform reach vs single-platform depth.

Lawrence Arya · June 7, 2026
Passport NFC Chip Reader UI in SwiftUI: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 6 min read

Passport NFC Chip Reader UI in SwiftUI

MRZ first, then the chip: the printed page derives the access key, Core NFC reads the signed data groups, and the UI coaches an anxious user through a finicky read.

Lawrence Arya · June 7, 2026
Pet Breed Identifier Camera AI UI in SwiftUI: a glass iPhone app-grid icon on a mint and teal gradient
Guides 5 min read

Pet Breed Identifier Camera AI UI in SwiftUI

The model classifies; the app presents uncertainty honestly. On-device Core ML, top-three confidences, capture coaching, and a fun estimate, not a pedigree.

Lawrence Arya · June 7, 2026
Photomath Clone Camera Scanner UI in SwiftUI: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 6 min read

Photomath Clone Camera Scanner UI in SwiftUI

Capture, recognize, solve, show steps: recognizing math is harder than text, the user confirms the parsed equation, and the worked steps are the product.

Lawrence Arya · June 7, 2026
PostHog Analytics Custom Events in SwiftUI: the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 6 min read

PostHog Analytics Custom Events in SwiftUI

Analytics is a deliberate taxonomy, not a firehose: events designed backward from questions, consistent naming, a thin SDK wrapper, consent-gated and PII-free.

Lawrence Arya · June 7, 2026
PromptPay QR Code Generator UI in SwiftUI: a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 6 min read

PromptPay QR Code Generator UI in SwiftUI

The QR is a standard, not free text: an EMVCo TLV payload with a checksum, static vs dynamic codes, and human-readable payee context as a fraud defense.

Lawrence Arya · June 7, 2026
RappiPay Card Management UI in SwiftUI: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 5 min read

RappiPay Card Management UI in SwiftUI

A card-control UI on a licensed issuer: freeze as state not intent, biometric-gated detail reveal, and every control round-tripping to the issuer.

Lawrence Arya · June 7, 2026
Robinhood Options Chain UI Clone in SwiftUI: a glass iPhone UI wireframe icon on a holographic purple gradient
Guides 6 min read

Robinhood Options Chain UI Clone in SwiftUI

An options chain is a density problem: expirations, a strike ladder, and a clear price line, made legible on a phone without gamifying a genuinely high-risk product.

Lawrence Arya · June 7, 2026
Smart Lock Bluetooth Key-Share UI in SwiftUI: a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 6 min read

Smart Lock Bluetooth Key-Share UI in SwiftUI

Sharing a smart lock key is access delegation, not a button. The access list is the product, and honest revocation that reaches the door is the hard part.

Lawrence Arya · June 7, 2026
AI Agent Thinking Animation in SwiftUI: Honest Motion: a glass app tile showing the VP0 logo on a pink and blue gradient
Guides 5 min read

AI Agent Thinking Animation in SwiftUI: Honest Motion

The SwiftUI vocabulary for AI activity: thinking dots, streaming text, named tool states, and typing animations that never fake what already arrived.

Lawrence Arya · June 5, 2026
AI Essay Grader Feedback Highlight UI: Teacher in the Loop: a glass app tile showing the VP0 logo on a pink and blue gradient
Guides 5 min read

AI Essay Grader Feedback Highlight UI: Teacher in the Loop

Design an AI essay grading UI: span-anchored highlights, rubric-mapped feedback categories, the teacher approval pass, and student views built for revision.

Lawrence Arya · June 5, 2026
App Blocker Strict Mode Lock Screen UI: Honest Locks: a glass iPhone app-grid icon on a mint and teal gradient
Guides 5 min read

App Blocker Strict Mode Lock Screen UI: Honest Locks

Design a strict-mode app blocker: commitment windows, a shame-free locked screen, escape valves for real emergencies, and the truth about unbypassability on iOS.

Lawrence Arya · June 5, 2026
App Onboarding Wizard Boilerplate: Earn Every Step: the App Store logo on a glass tile over a blue gradient with bubbles
Guides 4 min read

App Onboarding Wizard Boilerplate: Earn Every Step

An onboarding wizard boilerplate built honestly: steps that earn their existence, skip as a first-class affordance, in-context permissions, and a payoff landing.

Lawrence Arya · June 5, 2026
APNs Push Notifications SwiftUI Boilerplate: The Spine: a glowing iPhone home-screen icon on a purple and blue gradient
Guides 5 min read

APNs Push Notifications SwiftUI Boilerplate: The Spine

The APNs boilerplate every SwiftUI app needs: registration flow, token lifecycle, payload anatomy, sandbox-vs-production traps, and tap-through routing.

Lawrence Arya · June 5, 2026
Apple Books Page Curl Animation in SwiftUI: Real Options: the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 4 min read

Apple Books Page Curl Animation in SwiftUI: Real Options

Build the Apple Books page-curl in SwiftUI: the UIPageViewController wrap that actually works, the 3D-fold approximation, and when paging beats nostalgia.

Lawrence Arya · June 5, 2026
Apple Watch Ultra Action Button UI in SwiftUI: Intents: a glass iPhone UI wireframe icon on a holographic purple gradient
Guides 5 min read

Apple Watch Ultra Action Button UI in SwiftUI: Intents

Integrate the Watch Ultra Action button via App Intents: publish your one time-critical action, execute instantly, and design the in-app response honestly.

Lawrence Arya · June 5, 2026
AR Object Placement Target UI in SwiftUI: The Reticle: a reflective 3D App Store icon on a blue and purple gradient
Guides 4 min read

AR Object Placement Target UI in SwiftUI: The Reticle

Design AR placement UX in SwiftUI: the coaching phase, a state-honest reticle that snaps to surfaces, place-then-adjust gestures, and tracking truthfulness.

Lawrence Arya · June 5, 2026
AR Shoe Try-On Camera UI in SwiftUI: Honest Tiers: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 5 min read

AR Shoe Try-On Camera UI in SwiftUI: Honest Tiers

Build an AR shoe try-on camera UI: the foot-tracking truth, two honest capability tiers, the capture-to-share conversion loop, and fit claims that never lie.

Lawrence Arya · June 5, 2026
Biological Age Calculator Dashboard UI for iOS: Honest: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 4 min read

Biological Age Calculator Dashboard UI for iOS: Honest

Design a biological age dashboard: the estimate framed honestly, trends over absolutes, factor breakdowns tied to evidence, and zero longevity fear-mongering.

Lawrence Arya · June 5, 2026
Bit Payment App Clone in SwiftUI: Israel's P2P Pattern: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 5 min read

Bit Payment App Clone in SwiftUI: Israel's P2P Pattern

Clone Bit's P2P payment UX in SwiftUI: contact-first sends, group collection flows, request culture, and the licensed-rails truth behind Israel's default app.

Lawrence Arya · June 5, 2026
Budgeting App SwiftUI Tutorial: Code That Holds Up: a reflective 3D App Store icon on a blue and purple gradient
Guides 5 min read

Budgeting App SwiftUI Tutorial: Code That Holds Up

Build a budgeting app in SwiftUI: the three-entity model, a 10-second transaction add, envelope views without shame, Swift Charts months, and manual-first honesty.

Lawrence Arya · June 5, 2026
Car Sharing Unlock Bluetooth UI in SwiftUI: The Moment: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 5 min read

Car Sharing Unlock Bluetooth UI in SwiftUI: The Moment

Design the car-sharing BLE unlock: find-the-car flows, dual-confirmation unlock states, cellular fallback for garages, and an honest end-trip checklist.

Lawrence Arya · June 5, 2026
CarPlay Navigation Map Overlay in SwiftUI: Your Pixels: a phone toggle icon surrounded by location, calendar, settings, wallet and chart app icons on a coral gradient
Guides 4 min read

CarPlay Navigation Map Overlay in SwiftUI: Your Pixels

Build CarPlay navigation: the one template where you draw the map yourself, system maneuver overlays, the strict nav entitlement, and day-night duty.

Lawrence Arya · June 5, 2026
CarPlay EV Charging Station Finder UI: Templates Only: a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 5 min read

CarPlay EV Charging Station Finder UI: Templates Only

Build a CarPlay EV charging finder: the entitlement gate, the point-of-interest template system, live availability honesty, and the phone-app pairing that works.

Lawrence Arya · June 5, 2026
CGM Glucose Chart UI in SwiftUI: Companion-App Rules: a reflective 3D App Store icon on a blue and purple gradient
Guides 4 min read

CGM Glucose Chart UI in SwiftUI: Companion-App Rules

Build a CGM glucose chart in SwiftUI: target-range bands, time-in-range as the headline, honest sensor lag, tiered alerts, and the medical-device line.

Lawrence Arya · June 5, 2026
Convert a v0 React Component to SwiftUI: The Mapping: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 4 min read

Convert a v0 React Component to SwiftUI: The Mapping

Convert v0 React components to SwiftUI: the JSX-to-View mapping, Tailwind-to-modifier translation, what doesn't transfer, and the prompt that does it right.

Lawrence Arya · June 5, 2026
Dark Mode Toggle Animation Code for iOS: The Reveal: a glass app tile showing the VP0 logo on a pink and blue gradient
Guides 4 min read

Dark Mode Toggle Animation Code for iOS: The Reveal

Build the dark mode toggle animation on iOS: the circular reveal via the snapshot trick, semantic tokens that make it one-value cheap, and the system-first default.

Lawrence Arya · June 5, 2026
Discord Voice Channel User Grid in SwiftUI: Presence: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 4 min read

Discord Voice Channel User Grid in SwiftUI: Presence

Build Discord's voice channel grid in SwiftUI: per-user state tiles, speaking rings from volume callbacks, adaptive grid math, and drop-in presence done calmly.

Lawrence Arya · June 5, 2026
Drag and Drop Between Apps in SwiftUI: Transferable: a glowing iPhone home-screen icon on a purple and blue gradient
Guides 5 min read

Drag and Drop Between Apps in SwiftUI: Transferable

Build cross-app drag and drop in SwiftUI: the Transferable protocol, standard and custom types, drop targets that announce themselves, and the iPad-first truth.

Lawrence Arya · June 5, 2026
E-Ink Display Optimized UI Kit in SwiftUI: Still Design: a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 5 min read

E-Ink Display Optimized UI Kit in SwiftUI: Still Design

Design SwiftUI for e-ink displays: refresh and ghosting truths, the no-animation grammar, contrast-first layouts, and where e-ink UIs actually ship.

Lawrence Arya · June 5, 2026
Enterprise VPN Kill Switch UI in SwiftUI: Honest Blocks: a glowing iPhone home-screen icon on a purple and blue gradient
Guides 4 min read

Enterprise VPN Kill Switch UI in SwiftUI: Honest Blocks

Design a VPN kill-switch UI: the four states including blocking-as-product, NetworkExtension truths, MDM-managed transparency, and captive-portal honesty.

Lawrence Arya · June 5, 2026
Export Figma to SwiftUI Without Bravo Studio: 3 Routes: a glass app tile showing the VP0 logo on a pink and blue gradient
Guides 4 min read

Export Figma to SwiftUI Without Bravo Studio: 3 Routes

Get from Figma to SwiftUI without Bravo: the agent route that won, Dev Mode values as the spec, why plugin exporters disappoint, and when to skip Figma entirely.

Lawrence Arya · June 5, 2026
Fatal Error: Array Bounds in AI Swift Code: 4 Families: a glass iPhone app-grid icon on a mint and teal gradient
Workflows 4 min read

Fatal Error: Array Bounds in AI Swift Code: 4 Families

Fix the Index-out-of-range crashes AI writes in Swift: parallel-array assumptions, force-indexing, stale ForEach indices, and the brief that prevents all four.

Lawrence Arya · June 5, 2026
Figma Variables to SwiftUI Tokens: The AI Prompt: a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 4 min read

Figma Variables to SwiftUI Tokens: The AI Prompt

Convert Figma variables into a SwiftUI token system: modes become ColorScheme, aliases stay layered, and one regenerable file carries the whole design system.

Lawrence Arya · June 5, 2026
Final Cut Pro iPad Dial Clone in SwiftUI: Rotary Craft: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 5 min read

Final Cut Pro iPad Dial Clone in SwiftUI: Rotary Craft

Build the FCP-style jog dial in SwiftUI: angular gesture math, two-speed precision, frame-tick haptics, and the accessibility path every rotary control owes.

Lawrence Arya · June 5, 2026
Fixing Claude Core Data Fetch Array Bugs: 4 Families: a glass app tile showing the VP0 logo on a pink and blue gradient
Workflows 5 min read

Fixing Claude Core Data Fetch Array Bugs: 4 Families

Fix the Core Data bugs Claude generates: NSSet relationships treated as arrays, wrong-context fetches, misread faults, and the brief that prevents all four.

Lawrence Arya · June 5, 2026
iOS Alternative App Store UI Kit: MarketplaceKit Guide: a phone toggle icon surrounded by location, calendar, settings, wallet and chart app icons on a coral gradient
Guides 5 min read

iOS Alternative App Store UI Kit: MarketplaceKit Guide

What an iOS alternative app store UI kit really covers: MarketplaceKit's install flow, the storefront screens you design, and Apple's EU eligibility bar.

Lawrence Arya · June 5, 2026
iOS Default Browser Selection Screen Clone in SwiftUI: a reflective 3D App Store icon on a blue and purple gradient
Guides 6 min read

iOS Default Browser Selection Screen Clone in SwiftUI

How to clone the iOS browser choice screen UI in SwiftUI: randomized list, scroll-to-confirm, honest limits on the real system screen, and Apple's rules.

Lawrence Arya · June 5, 2026
Light Phone Launcher Clone on iOS: What's Possible: a reflective 3D App Store icon on a blue and purple gradient
Guides 5 min read

Light Phone Launcher Clone on iOS: What's Possible

How to build a Light Phone style launcher experience on iOS: the no-launcher rule, a minimalist action-list app, Focus modes, and Screen Time blocking.

Lawrence Arya · June 5, 2026
Mobile CRM Dashboard UI Kit in SwiftUI: A Field Guide: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 5 min read

Mobile CRM Dashboard UI Kit in SwiftUI: A Field Guide

How to build a mobile CRM dashboard in SwiftUI: pipeline cards, Swift Charts metrics, iPad split view, offline-first SwiftData, and what a kit can't do.

Lawrence Arya · June 5, 2026
One Sec App Breathing Overlay Clone: How It Works: a glass iPhone UI wireframe icon on a holographic purple gradient
Guides 6 min read

One Sec App Breathing Overlay Clone: How It Works

How to clone one sec's breathing intervention on iOS: the Shortcuts automation trick, the overlay decision flow, and what the PNAS study says actually works.

Lawrence Arya · June 5, 2026
Pill Reminder Notification UI Clone for iOS: Guide: a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 5 min read

Pill Reminder Notification UI Clone for iOS: Guide

How to build a Medisafe-style pill reminder on iOS: actionable notifications, the 64-slot budget, adherence UI without shame, and the medical-honesty lines.

Lawrence Arya · June 5, 2026
Premium iOS UI Kits With Source Code: 2026 Reality Check: a glass iPhone app-grid icon on a mint and teal gradient
Guides 6 min read

Premium iOS UI Kits With Source Code: 2026 Reality Check

What premium iOS UI kits with source code actually deliver in 2026, what to verify before paying, and when free AI-generated source beats bought source.

Lawrence Arya · June 5, 2026
School Parent Portal App in SwiftUI: A Design Guide: a glass iPhone app-grid icon on a mint and teal gradient
Guides 5 min read

School Parent Portal App in SwiftUI: A Design Guide

How to build a school parent portal in SwiftUI: the child switcher, a today-first home, absence reporting, actionable notifications, and student privacy.

Lawrence Arya · June 5, 2026
Skeleton Loading Screen in SwiftUI: Template & Rules: a glass iPhone app-grid icon on a mint and teal gradient
Guides 5 min read

Skeleton Loading Screen in SwiftUI: Template & Rules

How to build skeleton loading screens in SwiftUI: the redacted modifier, a shimmer overlay, layout-matched placeholders, and when not to skeleton at all.

Lawrence Arya · June 5, 2026
SwiftUI Core Data to SwiftData Migration: Prompt Guide: the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Workflows 5 min read

SwiftUI Core Data to SwiftData Migration: Prompt Guide

How to migrate Core Data to SwiftData with AI help: what maps cleanly, what breaks, the coexistence path Apple documents, and the prompt that works.

Lawrence Arya · June 5, 2026
SwiftUI Audio Transcription Template: Whisper On-Device: a glass app tile showing the VP0 logo on a pink and blue gradient
Guides 5 min read

SwiftUI Audio Transcription Template: Whisper On-Device

Build a SwiftUI transcription app with Whisper on-device via WhisperKit or Apple's Speech framework: live partials, model size trade-offs, and privacy honesty.

Lawrence Arya · June 5, 2026
TestFlight Beta Tester Feedback UI Clone: In-App Guide: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 5 min read

TestFlight Beta Tester Feedback UI Clone: In-App Guide

Clone TestFlight's feedback pattern inside your own app: screenshot-triggered reports, annotation canvas, honest context payloads, and a triage path that works.

Lawrence Arya · June 5, 2026
Tikkie Betaalverzoek UI Clone in SwiftUI: Request & Split: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 5 min read

Tikkie Betaalverzoek UI Clone in SwiftUI: Request & Split

How to build a Tikkie-style payment request UI in SwiftUI: the betaalverzoek composer, share-first flow, who-paid tracker, and kind reminders.

Lawrence Arya · June 5, 2026
Tinder Swipe UI Kit in SwiftUI: The Card Deck Code: a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 5 min read

Tinder Swipe UI Kit in SwiftUI: The Card Deck Code

Build the Tinder swipe card deck in SwiftUI: drag-tied rotation, threshold commits, fling-off physics, the next-card peek, and buttons that mirror gestures.

Lawrence Arya · June 5, 2026
TurboTax-Style Progress Tracker UI in SwiftUI: Guide: a phone toggle icon surrounded by location, calendar, settings, wallet and chart app icons on a coral gradient
Guides 5 min read

TurboTax-Style Progress Tracker UI in SwiftUI: Guide

Clone TurboTax's guided-interview pattern in SwiftUI: sectioned progress that never lies, one question per screen, resumability, and the review-before-submit.

Lawrence Arya · June 5, 2026
watchOS 12 Complication Template in SwiftUI: WidgetKit: the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Guides 5 min read

watchOS 12 Complication Template in SwiftUI: WidgetKit

The watchOS complication template for the WidgetKit era: accessory families, the 2-second wrist rule, always-on dimming, and the version-name confusion settled.

Lawrence Arya · June 5, 2026
Weather App Animated Background in SwiftUI: UI Kit Guide: the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 5 min read

Weather App Animated Background in SwiftUI: UI Kit Guide

Build a weather app with animated backgrounds in SwiftUI: condition-driven scenes, Canvas particles, WeatherKit data with required attribution, Reduce Motion.

Lawrence Arya · June 5, 2026
AI Pin Style Voice Interface Animation in SwiftUI: Guide: a glass iPhone UI wireframe icon on a holographic purple gradient
Guides 5 min read

AI Pin Style Voice Interface Animation in SwiftUI: Guide

Building an AI Pin style voice orb in SwiftUI: TimelineView plus Canvas, mic-driven RMS levels, five truthful states, captions, and Reduce Motion support.

Lawrence Arya · June 4, 2026
AR Smart Glasses Route Navigation UI in SwiftUI: Honest Guide: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 4 min read

AR Smart Glasses Route Navigation UI in SwiftUI: Honest Guide

Designing AR smart glasses route navigation in SwiftUI honestly: visionOS and ARKit today, world-anchored turns, glanceable cards, and a degradation ladder.

Lawrence Arya · June 4, 2026
Camera Live Object Detection: The Bounding Box UI: a glass iPhone UI wireframe icon on a holographic purple gradient
Guides 6 min read

Camera Live Object Detection: The Bounding Box UI

Drawing live bounding boxes over a camera feed is mostly coordinate math. Here is how to map Vision results to view space and keep the overlay smooth on iOS.

Lawrence Arya · June 4, 2026
CarPlay Audio App Template in SwiftUI: How It Works: a reflective 3D App Store icon on a blue and purple gradient
Guides 6 min read

CarPlay Audio App Template in SwiftUI: How It Works

CarPlay audio apps are template-based, not custom views, and need an Apple entitlement. Here is the real architecture, the entitlement step, and how to start.

Lawrence Arya · June 4, 2026
Crypto Portfolio Profit/Loss Chart in SwiftUI: Best Way: a reflective 3D App Store icon on a blue and purple gradient
Guides 5 min read

Crypto Portfolio Profit/Loss Chart in SwiftUI: Best Way

How to build a crypto portfolio profit and loss chart in SwiftUI: cost basis math, price feeds, Swift Charts baselines, and the honesty rules that keep trust.

Lawrence Arya · June 4, 2026
Discord UI Clone in SwiftUI with WebSockets: The Pattern: a glass iPhone app-grid icon on a mint and teal gradient
Guides 4 min read

Discord UI Clone in SwiftUI with WebSockets: The Pattern

Building a Discord-style chat in SwiftUI: message grouping density, channel drawers, and a WebSocket state machine with backoff, heartbeats, and resume.

Lawrence Arya · June 4, 2026
Duolingo-Style Progress Ring Animation on iOS (SwiftUI): the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Guides 5 min read

Duolingo-Style Progress Ring Animation on iOS (SwiftUI)

A Duolingo-style progress ring is one trimmed circle, animated. Here is the SwiftUI pattern, the rounded-cap detail, and how to drive it without redrawing.

Lawrence Arya · June 4, 2026
Face ID Biometric Login Screen in SwiftUI: Done Right: the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 6 min read

Face ID Biometric Login Screen in SwiftUI: Done Right

Face ID gates local access, it does not replace server auth. Here is the SwiftUI pattern: LocalAuthentication, a Keychain-stored token, and a real fallback.

Lawrence Arya · June 4, 2026
Field Service Technician App UI for iOS: Best Template: a glass app tile showing the VP0 logo on a pink and blue gradient
Guides 5 min read

Field Service Technician App UI for iOS: Best Template

The field service technician app UI that survives real job sites: routed job lists, offline work orders, photo and signature evidence, and per-record sync.

Lawrence Arya · June 4, 2026
Kuda Bank App Clone UI for iOS: Learn the Neobank Pattern: a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 5 min read

Kuda Bank App Clone UI for iOS: Learn the Neobank Pattern

How to build a Kuda-style neobank UI for iOS the honest way: the four patterns that carry the feel, biometric gating, mock-money honesty, and free designs.

Lawrence Arya · June 4, 2026
Muslim Pro Prayer Times UI Clone in SwiftUI: Done Right: the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 5 min read

Muslim Pro Prayer Times UI Clone in SwiftUI: Done Right

Building a prayer times app UI in SwiftUI honestly: visible calculation methods, a qibla compass with calibration truth, rolling notifications, and respect.

Lawrence Arya · June 4, 2026
Smart Meter Real-Time Energy Chart in SwiftUI: Best Setup: a glass app tile showing the VP0 logo on a pink and blue gradient
Guides 5 min read

Smart Meter Real-Time Energy Chart in SwiftUI: Best Setup

How to build a real-time smart meter energy chart in SwiftUI: where the data really comes from (P1, utility API, HomeKit), Swift Charts windowing, live UX.

Lawrence Arya · June 4, 2026
Fix Memory Leaks in AI-Generated SwiftUI Code: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Workflows 6 min read

Fix Memory Leaks in AI-Generated SwiftUI Code

AI-generated SwiftUI leaks in predictable ways: strong self in closures, uncancelled Combine, live timers. Here is how to spot and fix each with Instruments.

Lawrence Arya · June 4, 2026
SwiftUI HealthKit Sleep Chart Template: Build It Right: a reflective 3D App Store icon on a blue and purple gradient
Guides 6 min read

SwiftUI HealthKit Sleep Chart Template: Build It Right

Build a SwiftUI sleep chart from HealthKit sleep samples with Swift Charts. Here is the data model, the authorization gotcha, and a template to start from.

Lawrence Arya · June 4, 2026
SwiftUI Preview Canvas Crashes on AI Code: The Fixes: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 5 min read

SwiftUI Preview Canvas Crashes on AI Code: The Fixes

Why AI-generated SwiftUI crashes the preview canvas and how to fix it: Diagnostics-first debugging, preview-safe injection, fixtures, and prevention rules.

Lawrence Arya · June 4, 2026
UPI and Paytm Deep Linking in SwiftUI: The Safe Pattern: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 5 min read

UPI and Paytm Deep Linking in SwiftUI: The Safe Pattern

How UPI and Paytm deep linking works in a SwiftUI app: upi:// links, canOpenURL setup, PSP status verification, and the four screens the flow needs.

Lawrence Arya · June 4, 2026
The Best .cursorrules File for Pure Swift Mobile Apps: a phone toggle icon surrounded by location, calendar, settings, wallet and chart app icons on a coral gradient
Workflows 6 min read

The Best .cursorrules File for Pure Swift Mobile Apps

A good Cursor rules file stops it guessing and pins pure SwiftUI, Swift concurrency, and Apple conventions. Here is a complete example you can copy.

Lawrence Arya · June 3, 2026
Adalo Alternative for Custom SwiftUI Code: the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Guides 5 min read

Adalo Alternative for Custom SwiftUI Code

Outgrowing Adalo and want real custom SwiftUI? Here is when to switch, the AI rebuild path, and why VP0 is the free design reference to build against.

Lawrence Arya · June 2, 2026
App Tracking Transparency Prompt UI in SwiftUI: a glass app tile showing the VP0 logo on a pink and blue gradient
Guides 4 min read

App Tracking Transparency Prompt UI in SwiftUI

How to do the App Tracking Transparency prompt right in SwiftUI: prime it in context, ask at the correct moment, and keep the app working when the user says no.

Lawrence Arya · June 2, 2026
iOS Address Autocomplete: Google Places or Free MapKit: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 4 min read

iOS Address Autocomplete: Google Places or Free MapKit

How to build an address autocomplete UI for iOS with the Google Places API, plus MKLocalSearchCompleter, the free native alternative built into MapKit.

Lawrence Arya · June 2, 2026
Gyroscope 3D Parallax Effect in SwiftUI (Free Start): the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Guides 5 min read

Gyroscope 3D Parallax Effect in SwiftUI (Free Start)

Build a tilt-driven gyroscope 3D parallax effect in SwiftUI from a free VP0 design: read CoreMotion attitude, offset layers, smooth jitter, respect Reduce Motion.

Lawrence Arya · June 2, 2026
How to Fix Cursor AI Hallucinating SwiftUI APIs: a reflective 3D App Store icon on a blue and purple gradient
Guides 5 min read

How to Fix Cursor AI Hallucinating SwiftUI APIs

Cursor sometimes invents SwiftUI APIs that do not exist. Pin your iOS version, give it the real Apple docs, and match a concrete free VP0 design to cut errors.

Lawrence Arya · June 2, 2026
How to Make Cursor Write Better SwiftUI UI: a reflective 3D App Store icon on a blue and purple gradient
Guides 5 min read

How to Make Cursor Write Better SwiftUI UI

Make Cursor produce cleaner SwiftUI by giving it a concrete VP0 design to match, a strict project rules file, real Apple docs, and component-by-component prompts.

Lawrence Arya · June 2, 2026
How to Use Cursor AI as a UI/UX Designer (Honest): a glass iPhone app-grid icon on a mint and teal gradient
Guides 5 min read

How to Use Cursor AI as a UI/UX Designer (Honest)

Cursor is a coding tool, not a design tool. The honest workflow: feed it a real native design from free VP0, then let Cursor build clean UI fast.

Lawrence Arya · June 2, 2026
Hurricane Evacuation Route Map UI in SwiftUI: the App Store logo on a glass tile over a blue gradient with bubbles
Guides 5 min read

Hurricane Evacuation Route Map UI in SwiftUI

Build a hurricane evacuation route map in SwiftUI with MapKit: official zones, offline maps, clear directions, and large accessible controls. Start free with VP0.

Lawrence Arya · June 2, 2026
iOS 19 Design System: Figma to SwiftUI Code, Mapped: a glass iPhone UI wireframe icon on a holographic purple gradient
Guides 5 min read

iOS 19 Design System: Figma to SwiftUI Code, Mapped

Turn an iOS 19 design system from Figma into SwiftUI. Map color, type, and spacing tokens to native styles, then generate code with VP0 and Claude Code.

Lawrence Arya · June 2, 2026
Build a Language Learning App Like Duolingo in SwiftUI: the App Store logo on a glass tile over a blue gradient with bubbles
Guides 4 min read

Build a Language Learning App Like Duolingo in SwiftUI

A free SwiftUI pattern for a language learning app: a lesson path, exercise types, spaced repetition, and forgiving streaks. Learn the pattern, not the brand.

Lawrence Arya · June 2, 2026
Medical Disclaimer Popup UI for an iOS App: a glowing iPhone home-screen icon on a purple and blue gradient
Guides 5 min read

Medical Disclaimer Popup UI for an iOS App

How to build a medical disclaimer popup UI for iOS: clear not-medical-advice copy, an explicit consent step before first use, and a readable, accessible layout.

Lawrence Arya · June 2, 2026
Native In-App Purchases in SwiftUI Without RevenueCat: a glass iPhone app-grid icon on a mint and teal gradient
Guides 4 min read

Native In-App Purchases in SwiftUI Without RevenueCat

How to build in-app purchases in SwiftUI with StoreKit 2 directly, no RevenueCat: the tradeoffs, the compliance rules, and what you own server-side.

Lawrence Arya · June 2, 2026
Grounding and Breathing UI in SwiftUI, Calm: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 5 min read

Grounding and Breathing UI in SwiftUI, Calm

Build a calming grounding and breathing UI in SwiftUI from a free template: a slow breathing circle, box-breathing pacing, 5-4-3-2-1, gentle haptics.

Lawrence Arya · June 2, 2026
Headless Shopify Mobile App in SwiftUI: a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 4 min read

Headless Shopify Mobile App in SwiftUI

A free SwiftUI pattern for a headless Shopify app: drive your own native storefront with the Storefront API, then hand checkout to Shopify and Apple Pay.

Lawrence Arya · June 2, 2026
Smart Ring Sleep Tracker UI in SwiftUI: a glass app tile showing the VP0 logo on a pink and blue gradient
Guides 4 min read

Smart Ring Sleep Tracker UI in SwiftUI

A free SwiftUI pattern for a smart ring sleep tracker: read sleep from HealthKit or a Bluetooth ring, show stages and readiness, and stay non-medical.

Lawrence Arya · June 2, 2026
SwiftUI Camera and ARKit Overlay Code (Free Guide): a reflective 3D App Store icon on a blue and purple gradient
Guides 5 min read

SwiftUI Camera and ARKit Overlay Code (Free Guide)

Add a camera or ARKit overlay in SwiftUI: a UIViewRepresentable bridge, the camera usage-description string, and a clean overlay layer, from a free VP0 design.

Lawrence Arya · June 2, 2026
TikTok-Style Referral Code and Invite UI in SwiftUI: the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Guides 5 min read

TikTok-Style Referral Code and Invite UI in SwiftUI

Build a TikTok-style referral and invite screen in SwiftUI: a copyable code, share sheet, reward progress, and deep links. Start free with a VP0 design.

Lawrence Arya · June 2, 2026
Build a tvOS Netflix-Style Streaming UI in SwiftUI: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 5 min read

Build a tvOS Netflix-Style Streaming UI in SwiftUI

Build a tvOS streaming home UI in SwiftUI: the focus engine, focusable poster cards, horizontal shelves, and a top shelf. Start free from a VP0 design.

Lawrence Arya · June 2, 2026
Wheel of Fortune Spinner UI Template for iOS: the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Guides 4 min read

Wheel of Fortune Spinner UI Template for iOS

A free SwiftUI spinner pattern: a smooth spin that lands fairly on a segment, with disclosed odds, Reduce Motion support, and no pay-to-spin. A reward, not gambling.

Lawrence Arya · June 2, 2026
ADHD Daily Routine Planner UI in SwiftUI, Free: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 5 min read

ADHD Daily Routine Planner UI in SwiftUI, Free

Build an ADHD-friendly daily routine planner in SwiftUI from a free template. Visual, low-friction, time-aware design with Claude Code or Cursor.

Lawrence Arya · June 1, 2026
ChatGPT Style Native iOS Chat Wrapper, Free Boilerplate: the App Store logo on a glass tile over a blue gradient with bubbles
Guides 5 min read

ChatGPT Style Native iOS Chat Wrapper, Free Boilerplate

Build a ChatGPT style native iOS chat wrapper from a free boilerplate. A clean SwiftUI chat layout over your model API, that looks native, not like a web view.

Lawrence Arya · June 1, 2026
AI Voice Agent UI Screen, Free for iOS: the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 5 min read

AI Voice Agent UI Screen, Free for iOS

Build an AI voice agent UI screen for iOS from a free template. Get the listening orb, live states, and transcript with Claude Code or Cursor.

Lawrence Arya · June 1, 2026
App Store Today Tab Expanding Card UI in SwiftUI: the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Workflows 5 min read

App Store Today Tab Expanding Card UI in SwiftUI

Recreate the App Store Today tab expanding card in SwiftUI. The hero card that zooms to full screen, built with matched geometry, from a free template.

Lawrence Arya · June 1, 2026
How to Add an In-App Review Prompt in Swift (Safely): the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Workflows 5 min read

How to Add an In-App Review Prompt in Swift (Safely)

Add an App Store review prompt in Swift with SKStoreReviewController, the right way: ask after a win, never gate it, and respect Apple's limits to avoid rejection.

Lawrence Arya · June 1, 2026
Apple Sign In Required Rejection: Fix It in SwiftUI: a glass app tile showing the VP0 logo on a pink and blue gradient
Workflows 5 min read

Apple Sign In Required Rejection: Fix It in SwiftUI

Rejected because Sign in with Apple is missing? If you offer Google or Facebook login, Apple requires it too. Here is the SwiftUI fix that clears review.

Lawrence Arya · June 1, 2026
Aquarium Water Parameter Tracker UI Kit, Free: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 5 min read

Aquarium Water Parameter Tracker UI Kit, Free

Build an aquarium water parameter tracker for iOS from a free template. Log pH, ammonia, and nitrate, chart trends, and get alerts with Claude Code or Cursor.

Lawrence Arya · June 1, 2026
Baemin App UI Clone in SwiftUI, Free for iOS: the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Guides 5 min read

Baemin App UI Clone in SwiftUI, Free for iOS

Want a Baemin style food delivery UI clone in SwiftUI? Clone the playful delivery pattern from a free template and build it with Claude Code or Cursor. The legal way.

Lawrence Arya · June 1, 2026
The Best UI Library for AI-Generated iOS Apps: the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Guides 4 min read

The Best UI Library for AI-Generated iOS Apps

There is no single best UI library for AI-generated apps. The right pick depends on your stack, and the real lever is giving the model a strong design reference.

Lawrence Arya · June 1, 2026
bKash App Clone UI in SwiftUI, Free for iOS: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 5 min read

bKash App Clone UI in SwiftUI, Free for iOS

Want a bKash style wallet clone UI in SwiftUI? Clone the mobile-money pattern from a free template and build it with Claude Code or Cursor. The legal way.

Lawrence Arya · June 1, 2026
Build an AI Wrapper App in SwiftUI in 5 Minutes: a glowing iPhone home-screen icon on a purple and blue gradient
Guides 5 min read

Build an AI Wrapper App in SwiftUI in 5 Minutes

Build an AI wrapper app in SwiftUI fast: a clean chat screen plus one API call. Start from a free template so it looks native, not like a debug console.

Lawrence Arya · June 1, 2026
ChatGPT Voice API Mobile App Template, Free for iOS: a glowing iPhone home-screen icon on a purple and blue gradient
Guides 5 min read

ChatGPT Voice API Mobile App Template, Free for iOS

Build a ChatGPT voice mode style app for iOS from a free template. Get the listening, thinking, and speaking states over a voice API with Claude Code or Cursor.

Lawrence Arya · June 1, 2026
Claude Project Knowledge Base iOS App, Free Template: the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Guides 5 min read

Claude Project Knowledge Base iOS App, Free Template

Build a Claude-powered project knowledge base app for iOS from a free template. Documents, search, and grounded chat over your own files with Claude Code or Cursor.

Lawrence Arya · June 1, 2026
Claude Token Limits: SwiftUI App Architecture That Scales: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 5 min read

Claude Token Limits: SwiftUI App Architecture That Scales

Hitting Claude's context limit in your iOS app? Architect around it: trim context, summarize, retrieve, and cache prompts, from a free SwiftUI template.

Lawrence Arya · June 1, 2026
MercadoLibre Clone UI in SwiftUI + MercadoPago Webhooks: a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 5 min read

MercadoLibre Clone UI in SwiftUI + MercadoPago Webhooks

Build a MercadoLibre style marketplace UI in SwiftUI and wire MercadoPago webhooks the right way. Clone the pattern from a free template with Claude Code or Cursor.

Lawrence Arya · June 1, 2026
Cold Plunge Timer With HealthKit Sync in SwiftUI, Free: a glass iPhone UI wireframe icon on a holographic purple gradient
Guides 5 min read

Cold Plunge Timer With HealthKit Sync in SwiftUI, Free

Build a cold plunge timer for iOS from a free template. A big timer, session logging, and HealthKit sync in SwiftUI with Claude Code or Cursor.

Lawrence Arya · June 1, 2026
Core ML Image Recognition UI Kit, Free for iOS: a glass iPhone app-grid icon on a mint and teal gradient
Guides 5 min read

Core ML Image Recognition UI Kit, Free for iOS

Build a Core ML image recognition app for iOS from a free template. Camera, on-device classification, and a clear result UI with Claude Code or Cursor.

Lawrence Arya · June 1, 2026
CPR Metronome Chest Compression UI in SwiftUI, Free: a glass iPhone UI wireframe icon on a holographic purple gradient
Guides 5 min read

CPR Metronome Chest Compression UI in SwiftUI, Free

Build a CPR metronome practice app for iOS from a free template. A clear 100 to 120 BPM beat with haptics in SwiftUI. A training aid, not a medical device.

Lawrence Arya · June 1, 2026
Crypto Portfolio Tracker iOS Template, Free and Read-Only: the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 5 min read

Crypto Portfolio Tracker iOS Template, Free and Read-Only

Build a crypto portfolio tracker for iOS from a free template. Holdings, live prices, and charts, read-only and key-safe, with Claude Code or Cursor.

Lawrence Arya · June 1, 2026
Cursor Keeps Hallucinating SwiftUI Views? Fix It: a reflective 3D App Store icon on a blue and purple gradient
Guides 5 min read

Cursor Keeps Hallucinating SwiftUI Views? Fix It

Cursor inventing SwiftUI views and APIs that do not compile? Here is why, and how rules, a mapping kit, and a reference stop the hallucinations.

Lawrence Arya · June 1, 2026
Daily Bible Verse Widget UI in SwiftUI, Free: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 5 min read

Daily Bible Verse Widget UI in SwiftUI, Free

Build a daily Bible verse widget for iOS from a free template. A clean home-screen widget that refreshes each day, built in SwiftUI with WidgetKit.

Lawrence Arya · June 1, 2026
DePIN Network Map UI for iOS, Free Template: a glass iPhone app-grid icon on a mint and teal gradient
Guides 5 min read

DePIN Network Map UI for iOS, Free Template

Build a DePIN (decentralized physical infrastructure) network map UI for iOS from a free template. Nodes, coverage, and status with Claude Code or Cursor.

Lawrence Arya · June 1, 2026
Decentralized VPN Node Selector UI in SwiftUI, Free: the App Store logo on a glass tile over a blue gradient with bubbles
Guides 5 min read

Decentralized VPN Node Selector UI in SwiftUI, Free

Build a decentralized VPN node selector UI in SwiftUI from a free template. Browse nodes, see status, and connect, with the tunnel caveat handled honestly.

Lawrence Arya · June 1, 2026
Dental Charting Teeth UI Kit in SwiftUI, Free: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 5 min read

Dental Charting Teeth UI Kit in SwiftUI, Free

Build a dental charting (odontogram) UI in SwiftUI from a free template. A tappable tooth chart with per-tooth conditions and notes, with Claude Code or Cursor.

Lawrence Arya · June 1, 2026
Dog Training Clicker App UI in SwiftUI, Free: a glass iPhone UI wireframe icon on a holographic purple gradient
Guides 5 min read

Dog Training Clicker App UI in SwiftUI, Free

Build a dog training clicker app for iOS from a free template. A big instant clicker with sound and haptics, plus session logging, in SwiftUI.

Lawrence Arya · June 1, 2026
Draggable Bottom Sheet Over a Map in SwiftUI, Free: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 5 min read

Draggable Bottom Sheet Over a Map in SwiftUI, Free

Build an Apple Maps style draggable bottom sheet over a map in SwiftUI. Detents, a persistent sheet, and a clean map, from a free template, ready for Cursor.

Lawrence Arya · June 1, 2026
Drone Controller UI Layout in SwiftUI, Free: a phone toggle icon surrounded by location, calendar, settings, wallet and chart app icons on a coral gradient
Guides 5 min read

Drone Controller UI Layout in SwiftUI, Free

Build a drone controller UI in SwiftUI from a free template. Video feed, on-screen joysticks, and telemetry HUD, glanceable in flight, with Claude Code or Cursor.

Lawrence Arya · June 1, 2026
Dynamic Type Text Scaling Bugs in SwiftUI: The Fix: a phone toggle icon surrounded by location, calendar, settings, wallet and chart app icons on a coral gradient
Workflows 5 min read

Dynamic Type Text Scaling Bugs in SwiftUI: The Fix

SwiftUI text clipping or truncating when users scale font size? Here is why Dynamic Type breaks layouts and how to make text scale gracefully.

Lawrence Arya · June 1, 2026
EU Digital Driving License UI Template in SwiftUI, Free: a reflective 3D App Store icon on a blue and purple gradient
Guides 5 min read

EU Digital Driving License UI Template in SwiftUI, Free

Build a digital driving license UI in SwiftUI from a free template. The credential card, details, and verification view, with the official-issuer caveat handled.

Lawrence Arya · June 1, 2026
Fan Meet and Greet Queue UI in SwiftUI, Free: a glass app tile showing the VP0 logo on a pink and blue gradient
Guides 5 min read

Fan Meet and Greet Queue UI in SwiftUI, Free

Build a virtual meet-and-greet queue UI in SwiftUI from a free template. Live position, wait time, and a notify-when-up flow, with Claude Code or Cursor.

Lawrence Arya · June 1, 2026
AI Workout Generator App: Free Code and UI: a phone toggle icon surrounded by location, calendar, settings, wallet and chart app icons on a coral gradient
Guides 5 min read

AI Workout Generator App: Free Code and UI

Build an AI workout generator app for iOS from a free template. Inputs, a generated plan, and a workout player, wired to a model, with Claude Code or Cursor.

Lawrence Arya · June 1, 2026
Fix Memory Leaks in AI-Generated Swipe Cards (RN & Swift): a glossy App Store icon on a blue, pink and orange gradient with bubbles
Workflows 5 min read

Fix Memory Leaks in AI-Generated Swipe Cards (RN & Swift)

AI-generated swipe UI leaking memory in React Native or Swift? The causes are the same on both: unreleased views, retained closures, and uncleaned resources.

Lawrence Arya · June 1, 2026
Flitsmeister Style Speed Camera Alert UI in SwiftUI: a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 5 min read

Flitsmeister Style Speed Camera Alert UI in SwiftUI

Build a Flitsmeister style community road-alert UI in SwiftUI from a free template. Map, proximity alerts, and crowd reports with Claude Code or Cursor.

Lawrence Arya · June 1, 2026
Forest Style Tree-Growing Focus Timer in SwiftUI, Free: the App Store logo on a glass tile over a blue gradient with bubbles
Guides 5 min read

Forest Style Tree-Growing Focus Timer in SwiftUI, Free

Build a Forest style focus timer in SwiftUI from a free template. A tree that grows while you focus and withers if you leave, with Claude Code or Cursor.

Lawrence Arya · June 1, 2026
GitHub Copilot vs Cursor for Xcode: The Honest Answer: the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Guides 5 min read

GitHub Copilot vs Cursor for Xcode: The Honest Answer

For native iOS in Xcode, GitHub Copilot has an Xcode plugin and Cursor does not. Here is what that means, when each wins, and the free design layer both need.

Lawrence Arya · June 1, 2026
Ready-Made SwiftUI Components: Free Options and How to Use Them: a glass iPhone app-grid icon on a mint and teal gradient
Guides 5 min read

Ready-Made SwiftUI Components: Free Options and How to Use Them

Want ready-made SwiftUI components (gotowe komponenty)? Here are the best free open-source libraries and the AI-builder path to generate your own from a design.

Lawrence Arya · June 1, 2026
Free SwiftUI Components (Gratis SwiftUI Komponenter): the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 5 min read

Free SwiftUI Components (Gratis SwiftUI Komponenter)

Want free SwiftUI components (gratis SwiftUI komponenter)? Here are the best open-source libraries and the AI-builder path to generate your own from a design.

Lawrence Arya · June 1, 2026
Download Free SwiftUI Templates (Gratis Downloaden): a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 5 min read

Download Free SwiftUI Templates (Gratis Downloaden)

Want to download free SwiftUI templates (gratis downloaden)? Here is the better path: an AI-readable design you build from, not a static file to convert.

Lawrence Arya · June 1, 2026
Apple Health Pedometer Clone UI in SwiftUI, Free: the App Store logo on a glass tile over a blue gradient with bubbles
Guides 5 min read

Apple Health Pedometer Clone UI in SwiftUI, Free

Build an Apple Health style pedometer clone in SwiftUI from a free template. Rings, step count, and trends with Claude Code or Cursor, powered by HealthKit.

Lawrence Arya · June 1, 2026
In-App Purchase Paywall UI Template in SwiftUI: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 5 min read

In-App Purchase Paywall UI Template in SwiftUI

Build an in-app purchase paywall in SwiftUI from a free template. Get the plan options, social proof, restore, and StoreKit 2 wiring with Claude Code or Cursor.

Lawrence Arya · June 1, 2026
iOS 26 Liquid Glass UI Template, Free: the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 5 min read

iOS 26 Liquid Glass UI Template, Free

Build an iOS 26 Liquid Glass UI from a free template. Apply the glassEffect material the right way in SwiftUI with Claude Code or Cursor, content first, not gimmicky.

Lawrence Arya · June 1, 2026
IPTV Player UI Template in SwiftUI, Free: a phone toggle icon surrounded by location, calendar, settings, wallet and chart app icons on a coral gradient
Guides 5 min read

IPTV Player UI Template in SwiftUI, Free

Build an IPTV player UI in SwiftUI from a free template. Get the channel guide, player, and categories for your own licensed streams with Claude Code or Cursor.

Lawrence Arya · June 1, 2026
iOS Maps and Core Location Setup: The Config That Matters: a glass iPhone app-grid icon on a mint and teal gradient
Workflows 5 min read

iOS Maps and Core Location Setup: The Config That Matters

Setting up MapKit and Core Location on iOS? The config is small but exact: Info.plist usage keys, authorization, and MapKit for SwiftUI. Here is the free template.

Lawrence Arya · June 1, 2026
Build a Mental Health Journal App in SwiftUI: a glass app tile showing the VP0 logo on a pink and blue gradient
Guides 4 min read

Build a Mental Health Journal App in SwiftUI

A free SwiftUI pattern for a private mental health journal: mood check-ins, on-device storage, Face ID lock, and HealthKit State of Mind, all non-medical.

Lawrence Arya · June 1, 2026
Notion Clone UI Kit in SwiftUI, Free: the App Store logo on a glass tile over a blue gradient with bubbles
Guides 5 min read

Notion Clone UI Kit in SwiftUI, Free

Want a Notion clone UI kit in SwiftUI? Clone the block-editor pattern from a free template and build clean code with Claude Code or Cursor. The legal way.

Lawrence Arya · June 1, 2026
SCHUFA Credit Score Dial UI Clone, Free for iOS: the App Store logo on a glass tile over a blue gradient with bubbles
Guides 5 min read

SCHUFA Credit Score Dial UI Clone, Free for iOS

Build a SCHUFA style credit score dial UI for iOS from a free template. Clone the score gauge and factors pattern with Claude Code or Cursor, with licensed data.

Lawrence Arya · June 1, 2026
Spotify Clone UI Template in SwiftUI, Free: a glass iPhone app-grid icon on a mint and teal gradient
Guides 5 min read

Spotify Clone UI Template in SwiftUI, Free

Want a Spotify clone UI template in SwiftUI? Clone the music-streaming pattern from a free template and build clean code with Claude Code or Cursor. The legal way.

Lawrence Arya · June 1, 2026
Free SwiftUI Chat App Templates and UI Kits: a reflective 3D App Store icon on a blue and purple gradient
Guides 5 min read

Free SwiftUI Chat App Templates and UI Kits

Want a free SwiftUI chat template? Here are the best open-source chat UI options and the AI-builder path, so you can ship a real chat screen fast.

Lawrence Arya · June 1, 2026
AI-Ready Swift Mappings: A Free SwiftUI Boilerplate: a phone toggle icon surrounded by location, calendar, settings, wallet and chart app icons on a coral gradient
Workflows 5 min read

AI-Ready Swift Mappings: A Free SwiftUI Boilerplate

Give your AI builder a SwiftUI mapping kit, a cheat sheet of UI concept to SwiftUI API, so Claude or Cursor generates correct native code instead of guessing.

Lawrence Arya · June 1, 2026
SwiftUI NFC Reader with a Bottom Sheet Result: a glass app tile showing the VP0 logo on a pink and blue gradient
Guides 4 min read

SwiftUI NFC Reader with a Bottom Sheet Result

A free SwiftUI pattern for reading NFC tags with Core NFC and showing the result in a native bottom sheet, plus the entitlement and the tags-not-cards truth.

Lawrence Arya · June 1, 2026
Telegram Clone UI Kit in SwiftUI, Free: a phone toggle icon surrounded by location, calendar, settings, wallet and chart app icons on a coral gradient
Guides 5 min read

Telegram Clone UI Kit in SwiftUI, Free

Want a Telegram clone UI kit in SwiftUI? Clone the chat pattern from a free template and build clean code with Claude Code or Cursor. The legal way.

Lawrence Arya · June 1, 2026
Adyen Drop-in Checkout UI in SwiftUI: a phone toggle icon surrounded by location, calendar, settings, wallet and chart app icons on a coral gradient
Guides 4 min read

Adyen Drop-in Checkout UI in SwiftUI

Build an Adyen Drop-in checkout in SwiftUI: order summary, the Drop-in component, and clear result states, from a free VP0 design. PCI-safe by design.

Lawrence Arya · May 31, 2026
AI Chat Streaming UI in SwiftUI (Free Template): a phone toggle icon surrounded by location, calendar, settings, wallet and chart app icons on a coral gradient
Guides 5 min read

AI Chat Streaming UI in SwiftUI (Free Template)

Build a streaming AI chat UI in SwiftUI from a free VP0 design: token-by-token replies, autoscroll, a thinking state, and a smooth, never-janky thread.

Lawrence Arya · May 31, 2026
Free AI Headshot Generator App Template for iOS: a glowing iPhone home-screen icon on a purple and blue gradient
Guides 4 min read

Free AI Headshot Generator App Template for iOS

Building an AI headshot generator app? Start from a free VP0 iOS design, wire a certified image API, and ship a clean upload-to-result flow, honestly labeled.

Lawrence Arya · May 31, 2026
AI Voice Cloning App UI in SwiftUI, Done Honestly: a phone toggle icon surrounded by location, calendar, settings, wallet and chart app icons on a coral gradient
Guides 4 min read

AI Voice Cloning App UI in SwiftUI, Done Honestly

Build an AI voice cloning app UI in SwiftUI from a free VP0 design: record, train, and generate screens, with strict consent and a synthetic-audio disclosure.

Lawrence Arya · May 31, 2026
Apple HealthKit Step Counter in SwiftUI (Free Template): a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 4 min read

Apple HealthKit Step Counter in SwiftUI (Free Template)

Build a step-counter UI on HealthKit in SwiftUI: permission, today's steps, a trend chart, and goals, from a free VP0 design. Private, and not medical.

Lawrence Arya · May 31, 2026
Apple Music Now-Playing Screen Clone in SwiftUI: a glowing iPhone home-screen icon on a purple and blue gradient
Guides 4 min read

Apple Music Now-Playing Screen Clone in SwiftUI

Build an Apple Music-style now-playing screen in SwiftUI from a free VP0 design: big artwork, a precise scrubber, and transport controls. Your own brand.

Lawrence Arya · May 31, 2026
B2B Wholesale Order Matrix Grid UI in SwiftUI: a glass iPhone UI wireframe icon on a holographic purple gradient
Guides 4 min read

B2B Wholesale Order Matrix Grid UI in SwiftUI

Build a wholesale order matrix in SwiftUI: products by size and variant in a fast bulk-entry grid, account pricing, and net terms, from a free VP0 design.

Lawrence Arya · May 31, 2026
Bluetooth Device Pairing UI in SwiftUI (Free Template): the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 4 min read

Bluetooth Device Pairing UI in SwiftUI (Free Template)

A BLE pairing screen scans, lists nearby devices, and walks through connecting with clear states. Build it with Core Bluetooth from a free VP0 design.

Lawrence Arya · May 31, 2026
Live Audio Room UI in SwiftUI (Learn the Clubhouse Pattern): a glass app tile showing the VP0 logo on a pink and blue gradient
Guides 4 min read

Live Audio Room UI in SwiftUI (Learn the Clubhouse Pattern)

Build a live audio room UI in SwiftUI: a stage of speakers, a listening audience, and raise-to-speak, from a free VP0 design. Moderate from day one.

Lawrence Arya · May 31, 2026
Confetti Cannon Animation in SwiftUI (Free Pattern): the App Store logo on a glass tile over a blue gradient with bubbles
Guides 4 min read

Confetti Cannon Animation in SwiftUI (Free Pattern)

A confetti cannon celebrates a real win with a burst of particles. Build it in SwiftUI, fire it only on genuine success, and respect Reduce Motion.

Lawrence Arya · May 31, 2026
Construction Site Daily Log App Template (Free iOS UI): a phone toggle icon surrounded by location, calendar, settings, wallet and chart app icons on a coral gradient
Guides 4 min read

Construction Site Daily Log App Template (Free iOS UI)

Build a construction daily log app in SwiftUI: weather, crew, work done, and photo evidence, from a free VP0 design. Offline-first and timestamped for the record.

Lawrence Arya · May 31, 2026
A Cursor Rules File for Native SwiftUI iOS Apps: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 4 min read

A Cursor Rules File for Native SwiftUI iOS Apps

A cursor rules file tells Cursor how to write SwiftUI that stays native and consistent. Here is a starter rules file plus a free VP0 design to pair it with.

Lawrence Arya · May 31, 2026
Turning a Custom GPT Into a Native iOS App: What Actually Works: a reflective 3D App Store icon on a blue and purple gradient
Guides 4 min read

Turning a Custom GPT Into a Native iOS App: What Actually Works

There is no one-click converter from a Custom GPT to a native iOS app. Here is the honest path that works, building a real native shell from a free VP0 design.

Lawrence Arya · May 31, 2026
Dating App Swipe UI Components for React Native & Swift: a glass iPhone app-grid icon on a mint and teal gradient
Guides 5 min read

Dating App Swipe UI Components for React Native & Swift

Build a Tinder-style swipe deck from a free VP0 design: drag, rotate, like and pass, with match logic, in React Native or SwiftUI, free and original.

Lawrence Arya · May 31, 2026
DeepSeek API Chat Interface in SwiftUI: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 4 min read

DeepSeek API Chat Interface in SwiftUI

Build a DeepSeek chat interface in SwiftUI: a message thread, streaming replies, and an input bar, from a free VP0 design. Keep the API key on a server you control.

Lawrence Arya · May 31, 2026
Do Rork and Lovable Compile to Native Swift?: a glass iPhone UI wireframe icon on a holographic purple gradient
Guides 5 min read

Do Rork and Lovable Compile to Native Swift?

The honest answer: Rork builds React Native, Lovable builds web, and neither writes Swift. Here is what native really means and how to choose.

Lawrence Arya · May 31, 2026
Drone Pilot Flight Log App in SwiftUI (Free Template): a phone toggle icon surrounded by location, calendar, settings, wallet and chart app icons on a coral gradient
Guides 4 min read

Drone Pilot Flight Log App in SwiftUI (Free Template)

Build a drone flight log app in SwiftUI: flights with location, duration, battery, and notes, plus export, from a free VP0 design. A record-keeping tool.

Lawrence Arya · May 31, 2026
GDPR-Compliant SwiftUI Login Template (Free): the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Guides 4 min read

GDPR-Compliant SwiftUI Login Template (Free)

Build a GDPR-compliant SwiftUI login from a free VP0 iOS design: minimal data, clear consent, Sign in with Apple, and a readable privacy flow, compliant by design.

Lawrence Arya · May 31, 2026
Duolingo-Style Streak Flame Animation in SwiftUI: a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 4 min read

Duolingo-Style Streak Flame Animation in SwiftUI

Build a Duolingo-style streak flame animation in SwiftUI: a flame that grows with the streak and celebrates a daily win, from a free VP0 design.

Lawrence Arya · May 31, 2026
E-Commerce Checkout Screen in SwiftUI (Free Template): a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 5 min read

E-Commerce Checkout Screen in SwiftUI (Free Template)

Build a clean SwiftUI checkout from a free VP0 design: cart, address, payment, and review, with Apple Pay and a short, trustworthy flow that converts.

Lawrence Arya · May 31, 2026
Firebase iOS Auth Login With Dark Mode (Free SwiftUI): the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 4 min read

Firebase iOS Auth Login With Dark Mode (Free SwiftUI)

Build a Firebase auth login screen in SwiftUI with proper dark mode: email, social sign-in, and Sign in with Apple, from a free VP0 design.

Lawrence Arya · May 31, 2026
Fix Broken Arabic RTL Layouts in AI-Generated iOS Apps: the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 5 min read

Fix Broken Arabic RTL Layouts in AI-Generated iOS Apps

ChatGPT and Cursor often hardcode left-to-right layouts, so Arabic text looks broken. Here is how to make iOS layouts flip correctly, using a free VP0 design.

Lawrence Arya · May 31, 2026
Flight Booking App UI Kit in SwiftUI (Free Design): a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 4 min read

Flight Booking App UI Kit in SwiftUI (Free Design)

Build a flight booking flow in SwiftUI: search, results with real fares, seat and fare selection, and checkout, from a free VP0 design.

Lawrence Arya · May 31, 2026
Free SwiftUI Chat Template (Build It Right): a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 4 min read

Free SwiftUI Chat Template (Build It Right)

Build a free chat UI in SwiftUI: a message thread, bubbles, an input bar, and real-time updates, from a free VP0 design. The patterns that make it solid.

Lawrence Arya · May 31, 2026
Wrapping a Hugging Face Space Into an iOS App: a glass iPhone UI wireframe icon on a holographic purple gradient
Guides 5 min read

Wrapping a Hugging Face Space Into an iOS App

Turn a Hugging Face Space into an iOS app the right way: call it as an API through your server and build a native UI from a free VP0 design.

Lawrence Arya · May 31, 2026
iOS Document Picker UI Customization in SwiftUI: a glowing iPhone home-screen icon on a purple and blue gradient
Guides 4 min read

iOS Document Picker UI Customization in SwiftUI

Use the iOS document picker in SwiftUI to import and export files from Files and iCloud, from a free VP0 design. With security-scoped access.

Lawrence Arya · May 31, 2026
Check AI-Generated iOS UI Against the Human Interface Guidelines: a glass iPhone app-grid icon on a mint and teal gradient
Guides 4 min read

Check AI-Generated iOS UI Against the Human Interface Guidelines

AI tools generate plausible iOS screens that quietly break Apple's Human Interface Guidelines. Here is a repeatable review pass to catch it, using a free VP0 design.

Lawrence Arya · May 31, 2026
iOS Pull-to-Refresh With a Custom Lottie Animation: a glowing iPhone home-screen icon on a purple and blue gradient
Guides 4 min read

iOS Pull-to-Refresh With a Custom Lottie Animation

Tired of the default spinner? Add a custom pull-to-refresh animation from a free VP0 design, keep the native gesture intact, and never block the content.

Lawrence Arya · May 31, 2026
iPhone LiDAR Room Scanner UI Template (SwiftUI + RoomPlan): the App Store logo on a glass tile over a blue gradient with bubbles
Guides 4 min read

iPhone LiDAR Room Scanner UI Template (SwiftUI + RoomPlan)

Build a LiDAR room scanner UI in SwiftUI with RoomPlan: a guided scan, live coaching, and a 3D result, from a free VP0 design. With a graceful non-LiDAR fallback.

Lawrence Arya · May 31, 2026
Kotlin Multiplatform on iOS: Share Logic, Keep Native UI: a glass iPhone app-grid icon on a mint and teal gradient
Guides 4 min read

Kotlin Multiplatform on iOS: Share Logic, Keep Native UI

KMP shares business logic, not UI. Build truly native SwiftUI navigation from a free VP0 design over your shared Kotlin code, so iOS feels like iOS.

Lawrence Arya · May 31, 2026
Leaderboard Podium Animation for iOS (Free SwiftUI Pattern): the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 5 min read

Leaderboard Podium Animation for iOS (Free SwiftUI Pattern)

Build a leaderboard podium that ranks your top three with a satisfying rise-into-place animation in SwiftUI, accessible and free, starting from a VP0 design.

Lawrence Arya · May 31, 2026
Livestock Farm Management App UI (Free iOS Template): a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 4 min read

Livestock Farm Management App UI (Free iOS Template)

Build a livestock management app in SwiftUI: animal records, health and breeding logs, and tasks, from a free VP0 design. Offline-first for the barn.

Lawrence Arya · May 31, 2026
Locket-Style Photo Widget in SwiftUI (Learn the Pattern): the App Store logo on a glass tile over a blue gradient with bubbles
Guides 4 min read

Locket-Style Photo Widget in SwiftUI (Learn the Pattern)

Build a Locket-style photo widget in SwiftUI with WidgetKit: a friend's latest photo on your Home Screen, from a free VP0 design. Learn the pattern, respect privacy.

Lawrence Arya · May 31, 2026
How to Make an AI-Generated App Look Native on iOS: a glowing iPhone home-screen icon on a purple and blue gradient
Guides 4 min read

How to Make an AI-Generated App Look Native on iOS

AI tools produce apps that feel webby. Here is how to make an AI-generated app look and feel native on iOS, using system components and a free VP0 design.

Lawrence Arya · May 31, 2026
Meditation Breathing Circle Animation in SwiftUI: the App Store logo on a glass tile over a blue gradient with bubbles
Guides 4 min read

Meditation Breathing Circle Animation in SwiftUI

Build a calming breathing-guide animation in SwiftUI: a circle that expands and contracts to pace breathing, with haptics, from a free VP0 design.

Lawrence Arya · May 31, 2026
MLX Swift Local Model UI on Apple Silicon: a glowing iPhone home-screen icon on a purple and blue gradient
Guides 4 min read

MLX Swift Local Model UI on Apple Silicon

Build a UI for a local LLM on Apple Silicon with MLX Swift: a chat that runs on device, private and free per message, from a free VP0 design.

Lawrence Arya · May 31, 2026
MLX Swift Local LLM Chat UI: A Free, AI-Readable iOS Reference: the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 5 min read

MLX Swift Local LLM Chat UI: A Free, AI-Readable iOS Reference

A free reference for a local LLM chat UI on iOS using MLX Swift: an on-device model, streamed tokens, and a model picker. Hand it to your coding agent.

Lawrence Arya · May 31, 2026
Multi-Vendor Marketplace Dashboard UI in iOS: a reflective 3D App Store icon on a blue and purple gradient
Guides 4 min read

Multi-Vendor Marketplace Dashboard UI in iOS

Build a seller dashboard for a multi-vendor marketplace in SwiftUI: orders, listings, earnings, and payouts, from a free VP0 design. The vendor side.

Lawrence Arya · May 31, 2026
Municipal Parking Ticket Scanner Payment App UI: a reflective 3D App Store icon on a blue and purple gradient
Guides 4 min read

Municipal Parking Ticket Scanner Payment App UI

Build a parking ticket pay-by-scan app in SwiftUI: scan the citation, see the details, and pay, from a free VP0 design. Certified payments, honest fees.

Lawrence Arya · May 31, 2026
Notion-Style UI Kit for iPad in SwiftUI (Learn the Pattern): a glass iPhone UI wireframe icon on a holographic purple gradient
Guides 4 min read

Notion-Style UI Kit for iPad in SwiftUI (Learn the Pattern)

Build a Notion-style workspace UI for iPad in SwiftUI: a sidebar, a block-based editor, and adaptive layout, from a free VP0 design.

Lawrence Arya · May 31, 2026
Paddle Mobile Checkout UI Kit in SwiftUI: a glass iPhone UI wireframe icon on a holographic purple gradient
Guides 4 min read

Paddle Mobile Checkout UI Kit in SwiftUI

Build a Paddle checkout UI in SwiftUI: plan, price with tax handled, and a clean pay flow, from a free VP0 design. Plus the honest iOS rule on digital goods and IAP.

Lawrence Arya · May 31, 2026
Parking Spot Finder Live Map UI in SwiftUI: a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 4 min read

Parking Spot Finder Live Map UI in SwiftUI

Build a live parking finder in SwiftUI: a map of nearby spots with availability and price, plus navigation, from a free VP0 design. Honest live data, never stale.

Lawrence Arya · May 31, 2026
Podcast Player UI in SwiftUI (Learn the Spotify Pattern): a glass iPhone app-grid icon on a mint and teal gradient
Guides 4 min read

Podcast Player UI in SwiftUI (Learn the Spotify Pattern)

Build a podcast player UI in SwiftUI: a now-playing screen, a scrubber, speed and skip controls, and background audio, from a free VP0 design.

Lawrence Arya · May 31, 2026
Pomodoro Timer App in SwiftUI (Free Source Pattern): the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Guides 4 min read

Pomodoro Timer App in SwiftUI (Free Source Pattern)

Build a Pomodoro focus timer in SwiftUI: work and break intervals, a live countdown, and Live Activities, from a free VP0 design. Accurate even when backgrounded.

Lawrence Arya · May 31, 2026
Progress Ring Animation in SwiftUI: Rings That Motivate: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 4 min read

Progress Ring Animation in SwiftUI: Rings That Motivate

Apple Watch-style activity rings make progress feel rewarding. Build a smooth animated progress ring from a free VP0 design in SwiftUI, accessible and honest.

Lawrence Arya · May 31, 2026
Raw Firebase Auth in SwiftUI Without the SDK: a reflective 3D App Store icon on a blue and purple gradient
Guides 4 min read

Raw Firebase Auth in SwiftUI Without the SDK

Use Firebase Authentication in SwiftUI via its REST API, no SDK: lighter app, fewer dependencies, and full control, from a free VP0 design.

Lawrence Arya · May 31, 2026
Recipe Cooking Step-by-Step UI in iOS (Free Template): a glass iPhone app-grid icon on a mint and teal gradient
Guides 4 min read

Recipe Cooking Step-by-Step UI in iOS (Free Template)

Build a step-by-step cooking mode in SwiftUI: one step at a time, big text, timers, and a screen that stays awake, from a free VP0 design. Built for messy hands.

Lawrence Arya · May 31, 2026
RevenueCat Paywall Template in SwiftUI (Free Design): a glass iPhone app-grid icon on a mint and teal gradient
Guides 4 min read

RevenueCat Paywall Template in SwiftUI (Free Design)

Build a clean RevenueCat paywall in SwiftUI: plan options, a clear price, and an honest call to action, from a free VP0 design. RevenueCat handles the billing.

Lawrence Arya · May 31, 2026
Shift Scheduling Calendar With Drag-and-Drop (Free iOS UI): a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 5 min read

Shift Scheduling Calendar With Drag-and-Drop (Free iOS UI)

Build a shift scheduling calendar where managers drag shift blocks onto people and time slots, in SwiftUI, accessible and free, starting from a VP0 design.

Lawrence Arya · May 31, 2026
Solar Panel Energy Flow Dashboard UI in SwiftUI: a reflective 3D App Store icon on a blue and purple gradient
Guides 4 min read

Solar Panel Energy Flow Dashboard UI in SwiftUI

Build a solar energy flow dashboard in SwiftUI: live production, home use, battery, and grid, with an animated flow diagram, from a free VP0 design.

Lawrence Arya · May 31, 2026
Spotify-Style Music Player UI in SwiftUI, Done Right: a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 4 min read

Spotify-Style Music Player UI in SwiftUI, Done Right

Want a Spotify-style player? Build the library, now-playing, and mini-player from a free VP0 design in SwiftUI, learn the pattern, and bring your own brand.

Lawrence Arya · May 31, 2026
Stable Diffusion Image Generator UI in SwiftUI: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 4 min read

Stable Diffusion Image Generator UI in SwiftUI

Build a Stable Diffusion image generator UI in SwiftUI: a prompt, generation progress, and a result gallery, from a free VP0 design. Key server-side or on-device.

Lawrence Arya · May 31, 2026
Subscription Manager Dashboard UI for iOS: the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 4 min read

Subscription Manager Dashboard UI for iOS

Build a subscription manager dashboard in SwiftUI: all your recurring costs, renewal dates, and totals, from a free VP0 design. Read-only and honest.

Lawrence Arya · May 31, 2026
Sudoku Grid Generator UI in SwiftUI (Free Source Pattern): the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 4 min read

Sudoku Grid Generator UI in SwiftUI (Free Source Pattern)

Build a Sudoku game in SwiftUI: a 9x9 grid, a uniquely-solvable puzzle generator, notes, and validation, from a free VP0 design.

Lawrence Arya · May 31, 2026
Supabase Auth Screen Template for iOS (Free SwiftUI): the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Guides 4 min read

Supabase Auth Screen Template for iOS (Free SwiftUI)

Build a Supabase auth screen in SwiftUI: email, magic link, social sign-in, and Sign in with Apple, from a free VP0 design. With row-level security.

Lawrence Arya · May 31, 2026
Custom Camera UI With AVFoundation in SwiftUI: the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 4 min read

Custom Camera UI With AVFoundation in SwiftUI

Build a custom camera UI in SwiftUI with AVFoundation: live preview, capture, and controls, from a free VP0 design. Privacy-first, with the permission string.

Lawrence Arya · May 31, 2026
Telegram-Style Channel List UI in SwiftUI (Learn the Pattern): the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Guides 4 min read

Telegram-Style Channel List UI in SwiftUI (Learn the Pattern)

Build a Telegram-style channel and chat list in SwiftUI: rows with avatar, last message, time, and unread badge, from a free VP0 design.

Lawrence Arya · May 31, 2026
Telegram Dark Mode Color Palette in SwiftUI: a glass iPhone UI wireframe icon on a holographic purple gradient
Guides 4 min read

Telegram Dark Mode Color Palette in SwiftUI

Build a Telegram-style theming system in SwiftUI: semantic colors that adapt to light and dark and match Telegram's theme, from a free VP0 design.

Lawrence Arya · May 31, 2026
Video Editor Timeline UI in iOS (Learn the CapCut Pattern): a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 4 min read

Video Editor Timeline UI in iOS (Learn the CapCut Pattern)

Build a video editor timeline UI in SwiftUI: scrubbable clips, trim handles, and layered tracks, from a free VP0 design. AVFoundation does the editing.

Lawrence Arya · May 31, 2026
Virtual Pet (Tamagotchi-Style) UI in SwiftUI: a glass iPhone app-grid icon on a mint and teal gradient
Guides 4 min read

Virtual Pet (Tamagotchi-Style) UI in SwiftUI

Build a virtual pet app in SwiftUI: needs that change over real time, care actions, and gentle reminders, from a free VP0 design.

Lawrence Arya · May 31, 2026
watchOS AI Agent Widget Template (SwiftUI): a glass iPhone app-grid icon on a mint and teal gradient
Guides 4 min read

watchOS AI Agent Widget Template (SwiftUI)

Build an AI agent companion for Apple Watch in SwiftUI: a glanceable complication, quick actions, and a wrist-sized reply, from a free VP0 design.

Lawrence Arya · May 31, 2026
Whisper Voice Transcription App UI in SwiftUI: A Free Reference: a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 5 min read

Whisper Voice Transcription App UI in SwiftUI: A Free Reference

A free, AI-readable SwiftUI reference for a Whisper transcription app: a record button, live waveform, and an editable transcript. Hand it to your coding agent.

Lawrence Arya · May 31, 2026
Wordle-Style Daily Word Game in SwiftUI (Learn the Pattern): a phone toggle icon surrounded by location, calendar, settings, wallet and chart app icons on a coral gradient
Guides 5 min read

Wordle-Style Daily Word Game in SwiftUI (Learn the Pattern)

Build a daily word-guessing game like Wordle in SwiftUI: a letter grid, color feedback, and a once-a-day puzzle, from a free VP0 design.

Lawrence Arya · May 31, 2026
Apple HIG UI Kit: How to Get One Free (and Use It): the App Store logo on a glass tile over a blue gradient with bubbles
Guides 4 min read

Apple HIG UI Kit: How to Get One Free (and Use It)

You don't need to buy an Apple HIG UI kit. Start from a free native-looking VP0 design, turn it into components, and pair it with Apple's free HIG and SF Symbols.

Lawrence Arya · May 30, 2026
Apple Watch App UI Kit: A Free 2026 Starting Point: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 4 min read

Apple Watch App UI Kit: A Free 2026 Starting Point

An Apple Watch UI is glanceable and single-purpose, not a shrunk iPhone app. Build the companion app from a free VP0 design, then apply it to SwiftUI watch screens.

Lawrence Arya · May 30, 2026
AI 助手界面 SwiftUI 原生风格做法: the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Guides 4 min read

AI 助手界面 SwiftUI 原生风格做法

用 SwiftUI 原生重建 AI 助手界面,靠 @State 管流式、ScrollViewReader 自动滚到底。用 VP0 免费设计起步,交给 Claude 生成。

Lawrence Arya · May 30, 2026
ChatGPT 前端 SwiftUI 原生风格做法: a glowing iPhone home-screen icon on a purple and blue gradient
Guides 4 min read

ChatGPT 前端 SwiftUI 原生风格做法

用 SwiftUI 原生做 ChatGPT 式前端,靠 AttributedString 渲染 Markdown、LazyVStack 扛长会话。用 VP0 免费设计起步。

Lawrence Arya · May 30, 2026
大模型对话暗色 UI SwiftUI 原生做法: the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 4 min read

大模型对话暗色 UI SwiftUI 原生做法

用 SwiftUI 原生做大模型对话的暗色界面,靠语义色和 preferredColorScheme 一套代码通吃浅深。用 VP0 免费设计起步。

Lawrence Arya · May 30, 2026
Cursor AI 无脑搭建 iOS 移动端界面教程(附模板): a reflective 3D App Store icon on a blue and purple gradient
Workflows 4 min read

Cursor AI 无脑搭建 iOS 移动端界面教程(附模板)

用 Cursor 搭 iOS 界面可以「无脑」,但前提是设计先行。完整流程:在 VP0 挑原生设计,复制链接喂给 Cursor 生成代码,再补状态、测真机。

Lawrence Arya · May 30, 2026
Claude 写 SwiftUI 排版混乱?用模板对照修复: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 4 min read

Claude 写 SwiftUI 排版混乱?用模板对照修复

Claude 写 SwiftUI 排版乱,多半是缺一个明确的设计基准。给它一个 VP0 原生设计当「标准答案」,对照着修间距、对齐和安全区最快。

Lawrence Arya · May 30, 2026
仿抖音短视频信息流 SwiftUI 原生做法: a glass iPhone app-grid icon on a mint and teal gradient
Guides 4 min read

仿抖音短视频信息流 SwiftUI 原生做法

用 SwiftUI 原生做抖音式全屏短视频流,靠 TabView 竖向分页加 VideoPlayer、预加载下一条。VP0 免费起步。

Lawrence Arya · May 30, 2026
小红书瀑布流 SwiftUI 原生实现做法: a reflective 3D App Store icon on a blue and purple gradient
Guides 4 min read

小红书瀑布流 SwiftUI 原生实现做法

用 SwiftUI 原生做小红书式双列瀑布流,靠分列高度均衡加 AsyncImage 占位。用 VP0 免费设计起步,交给 Claude 生成。

Lawrence Arya · May 30, 2026
高仿微信首页聊天布局 SwiftUI 原生: the App Store logo on a glass tile over a blue gradient with bubbles
Guides 4 min read

高仿微信首页聊天布局 SwiftUI 原生

用 SwiftUI 原生做微信式会话首页,靠 List 加 swipeActions 实现侧滑操作。学结构而非照抄,VP0 免费起步。

Lawrence Arya · May 30, 2026
京东分类双滚动列表 SwiftUI 原生做法: a phone toggle icon surrounded by location, calendar, settings, wallet and chart app icons on a coral gradient
Guides 4 min read

京东分类双滚动列表 SwiftUI 原生做法

用 SwiftUI 原生做京东式分类双滚动,靠 ScrollViewReader 做左右联动、scrollTo 跳段。VP0 免费起步。

Lawrence Arya · May 30, 2026
B 端 ERP 统计图表 SwiftUI Charts 做法: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 4 min read

B 端 ERP 统计图表 SwiftUI Charts 做法

用 SwiftUI 的 Swift Charts 做 B 端 ERP 监控图表,折线柱状饼图几行就出,配 Grid 做指标卡。VP0 免费起步。

Lawrence Arya · May 30, 2026
数字身份钱包 SwiftUI 原生卡片做法: a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 4 min read

数字身份钱包 SwiftUI 原生卡片做法

用 SwiftUI 原生做数字身份钱包,靠卡片层叠加 matchedGeometryEffect 展开、生物识别守门。VP0 免费起步。

Lawrence Arya · May 30, 2026
大疆控制器移动端界面 SwiftUI 原生做法: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 4 min read

大疆控制器移动端界面 SwiftUI 原生做法

用 SwiftUI 原生做无人机控制器界面,实时画面做底层、飞行参数浮层、返航安全最醒目。VP0 免费起步。

Lawrence Arya · May 30, 2026
小米 SU7 车机中控 SwiftUI 原生做法: a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 4 min read

小米 SU7 车机中控 SwiftUI 原生做法

用 SwiftUI 原生做 SU7 式车机中控,靠 Gauge 显能量、超大 Text 显车速、Grid 分区。用 VP0 免费设计借鉴起步。

Lawrence Arya · May 30, 2026
智能家居控制面板 SwiftUI 原生做法: the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 4 min read

智能家居控制面板 SwiftUI 原生做法

用 SwiftUI 原生做智能家居控制面板,设备卡用 Grid、场景一键切换、开关即时反馈。VP0 免费起步。

Lawrence Arya · May 30, 2026
税务发票移动端 SwiftUI 原生表单做法: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 4 min read

税务发票移动端 SwiftUI 原生表单做法

用 SwiftUI 原生做开票表单,靠 Form 加实时校验、抬头一键带入、状态明确。VP0 免费起步,交给 Claude 生成。

Lawrence Arya · May 30, 2026
SwiftUI 日历健康钱包高保真 UI 源码:学模式做自己的: the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Guides 3 min read

SwiftUI 日历健康钱包高保真 UI 源码:学模式做自己的

SwiftUI 高保真做日历、健康、钱包界面,难在数据和动效。与其抄具体 App,不如用 VP0 设计学模式,做出你自己的版本。

Lawrence Arya · May 30, 2026
SwiftUI 极简设计移动端开源模板:克制最考验细节: the App Store logo on a glass tile over a blue gradient with bubbles
Guides 3 min read

SwiftUI 极简设计移动端开源模板:克制最考验细节

SwiftUI 极简移动端模板,难在克制和细节。用 VP0 挑个极简原生设计让 AI 生成 SwiftUI,留白和层级照原生来,别写死颜色。

Lawrence Arya · May 30, 2026
日历选择器 SwiftUI 移动端模板:单选范围都要对: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 3 min read

日历选择器 SwiftUI 移动端模板:单选范围都要对

日历选择器是高频控件,单选、范围、标记、切月都要做对。简单用 SwiftUI DatePicker,复杂日历用 VP0 设计喂给 AI 生成。

Lawrence Arya · May 30, 2026
空状态页面 SwiftUI ContentUnavailableView: a reflective 3D App Store icon on a blue and purple gradient
Guides 4 min read

空状态页面 SwiftUI ContentUnavailableView

SwiftUI 做空状态,用原生 ContentUnavailableView 一行就出,无数据、搜索无果、出错各给不同引导。VP0 免费起步。

Lawrence Arya · May 30, 2026
iOS 毛玻璃弹窗 React Native 模板:层次比透明度重要: a glass app tile showing the VP0 logo on a pink and blue gradient
Guides 3 min read

iOS 毛玻璃弹窗 React Native 模板:层次比透明度重要

iOS 毛玻璃弹窗好看的关键在层次和对比,不是调低透明度。免费做法是用 VP0 挑个带毛玻璃的原生设计,喂给 Cursor 或 Claude Code 生成代码。

Lawrence Arya · May 30, 2026
iOS 毛玻璃弹窗 SwiftUI 原生做法: a glass iPhone UI wireframe icon on a holographic purple gradient
Guides 4 min read

iOS 毛玻璃弹窗 SwiftUI 原生做法

用 SwiftUI 原生做毛玻璃弹窗,靠 Material 一行搞定模糊、presentationDetents 控制半屏。用 VP0 免费设计起步。

Lawrence Arya · May 30, 2026
OTP 验证码输入 SwiftUI 原生做法: a glass iPhone UI wireframe icon on a holographic purple gradient
Guides 4 min read

OTP 验证码输入 SwiftUI 原生做法

用 SwiftUI 原生做验证码输入框,靠 FocusState 管焦点、onChange 自动跳格、numberPad 键盘。用 VP0 免费设计起步。

Lawrence Arya · May 30, 2026
下拉刷新丝滑动画 SwiftUI 原生做法: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 4 min read

下拉刷新丝滑动画 SwiftUI 原生做法

SwiftUI 做下拉刷新,一个 refreshable 修饰符就够,配 async 异步加载。用 VP0 免费设计起步,交给 Claude 生成。

Lawrence Arya · May 30, 2026
下拉刷新丝滑动画移动端源码:靠的是手感细节: a glass iPhone app-grid icon on a mint and teal gradient
Guides 3 min read

下拉刷新丝滑动画移动端源码:靠的是手感细节

下拉刷新做得丝滑,靠阻尼感、触发时机和克制的原生动画,不是套个转圈。用 VP0 挑带下拉刷新的原生设计喂给 AI 生成。

Lawrence Arya · May 30, 2026
Aadhaar KYC Screen SwiftUI Template Free (Secure Flow): a glass iPhone app-grid icon on a mint and teal gradient
Guides 4 min read

Aadhaar KYC Screen SwiftUI Template Free (Secure Flow)

Aadhaar KYC screen SwiftUI में चाहिए? masked input, ईमानदार consent और certified verification सीखिए। VP0 से free design लेकर अपनी सुरक्षित KYC screen बनाइए।

Lawrence Arya · May 30, 2026
Ola Electric Scooter Mobile Dashboard SwiftUI (Learn the Pattern): the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Guides 4 min read

Ola Electric Scooter Mobile Dashboard SwiftUI (Learn the Pattern)

Electric scooter जैसा SwiftUI dashboard बनाना है? structure सीखिए, brand नहीं। VP0 से design लेकर अपना battery, range और ride dashboard बनाइए, free।

Lawrence Arya · May 30, 2026
Mobile Calendar Date Picker SwiftUI Aesthetic Kit (Free): a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 4 min read

Mobile Calendar Date Picker SwiftUI Aesthetic Kit (Free)

SwiftUI में एक सुंदर calendar date picker चाहिए? VP0 से एक aesthetic date-picker design लेकर अपना SwiftUI code बनाइए, states और dark mode के साथ, free।

Lawrence Arya · May 30, 2026
GitHub SwiftUI Ecommerce MIT Download: Safer Free Way: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 4 min read

GitHub SwiftUI Ecommerce MIT Download: Safer Free Way

GitHub SwiftUI ecommerce complete MIT download ढूँढ रहे हैं? random repo जोखिम भरा है। सबसे साफ़ free रास्ता है VP0 design से अपना SwiftUI ecommerce screen बनाना।

Lawrence Arya · May 30, 2026
SwiftUI App Template Free for Beginners (Start Clean): the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles
Guides 4 min read

SwiftUI App Template Free for Beginners (Start Clean)

SwiftUI app template beginners के लिए चाहिए? भारी ZIP नहीं, एक साफ़ चलती शुरुआत सीखिए। VP0 से free design लेकर list, detail और settings SwiftUI में बनाइए।

Lawrence Arya · May 30, 2026
iPadOS Split View App Template in SwiftUI (Free): a glass iPhone app-grid icon on a mint and teal gradient
Guides 4 min read

iPadOS Split View App Template in SwiftUI (Free)

An iPad app shouldn't be a stretched iPhone layout. Use SwiftUI NavigationSplitView for a sidebar-list-detail layout, with each column built from a free VP0 screen.

Lawrence Arya · May 30, 2026
SwiftData UI Template: Build a Data-Driven Screen Free: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Guides 4 min read

SwiftData UI Template: Build a Data-Driven Screen Free

A SwiftData UI template is a data-driven screen: a list backed by stored models. Design it from a free VP0 layout, then back it with a SwiftData model and query.

Lawrence Arya · May 30, 2026
SwiftUI Banking App Template (Free, Trustworthy UI): the App Store logo on a glass tile over a blue gradient with bubbles
Guides 4 min read

SwiftUI Banking App Template (Free, Trustworthy UI)

A banking UI is about trust: clear balances, biometric unlock, masked numbers. Build it from a free VP0 design and route real banking through a certified backend.

Lawrence Arya · May 30, 2026
SwiftUI Finance App Template (Free, Clear, Secure): the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 4 min read

SwiftUI Finance App Template (Free, Clear, Secure)

A finance app makes money legible fast. Build the dashboard, transactions, and budgets in SwiftUI with Swift Charts from a free VP0 design, and keep data secure.

Lawrence Arya · May 30, 2026
Free SwiftUI Templates (and How to Build From Them): the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Guides 4 min read

Free SwiftUI Templates (and How to Build From Them)

Free SwiftUI templates are useful only if they're native, yours to edit, and lead to code. Turn free VP0 designs into SwiftUI you own with Cursor or Claude Code.

Lawrence Arya · May 30, 2026
visionOS App and Mobile Companion (Design Both Right): a glossy App Store icon on a blue, pink and orange gradient with bubbles
Guides 4 min read

visionOS App and Mobile Companion (Design Both Right)

visionOS is spatial computing, not a big iPhone. Design the headset experience to spatial conventions, and build the iPhone companion from a free VP0 design.

Lawrence Arya · May 30, 2026
How to Build an iOS App With Claude Code, Step by Step: a reflective 3D App Store icon on a blue and purple gradient
Workflows 4 min read

How to Build an iOS App With Claude Code, Step by Step

Claude Code writes real SwiftUI from plain English. Here is how to drive it from a design reference and build a native iOS app you own.

Lawrence Arya · May 27, 2026