Swiftui
9 articles about swiftui.
AI Coding Technique: Change One File, Migrate the Entire Codebase
A practical AI coding technique - manually change one SwiftUI file, then have Claude Code migrate 1500+ hardcoded calls across the entire codebase to match.
Why We Build AI Tools with SwiftUI Instead of Electron
Native macOS apps feel right - proper keyboard shortcuts, menu bar integration, system notifications. Electron apps are cross-platform but feel foreign on Mac. Here is why we chose SwiftUI for Fazm.
Why Small Separate SwiftUI Utility Packages Beat Monorepos with AI Agents
When working with AI coding agents, keeping SwiftUI utilities as separate packages prevents the agent from attempting unwanted refactors of your shared code.
Opus 4.5 vs 4.6 for SwiftUI Debugging - How 4.6 Diagnosed a Constraint Loop Crash
Claude Opus 4.6 diagnosed a SwiftUI constraint loop crash that had been crashing for weeks - a problem Opus 4.5 could not solve. Here is what changed.
Building a Production iOS App in 35 Hours with Claude Code
A real experience building a production-quality iOS app with Claude Code in 35 hours. The logic was easy - SwiftUI styling was the hardest part by far.
PWA vs Native macOS App - How to Decide for Your AI Tool
PWA is fastest to ship but feels like a wrapper. Native SwiftUI gives you proper notifications, menu bar integration, and system-level shortcuts. For AI agents that need OS access, native wins.
Building a Floating Toolbar in SwiftUI for macOS - Lessons from a Desktop Agent
Practical SwiftUI patterns for building a floating toolbar on macOS - @State layout management, frame animations, and keyboard height tracking for menu bar apps.
Fixing SwiftUI LazyVGrid Performance Issues on macOS
LazyVGrid jitter and stuttering on macOS comes from view identity instability. Here are practical fixes: stable .id() values, extracted cell views, async image loading, and avoiding inline closures.
Building Visual Wrappers for Claude Code - Why Some Developers Go Native
Claude Code's terminal interface works but debugging AI agent actions is easier with a visual UI. Some developers build native macOS wrappers with SwiftUI for better observability.