SwiftUI Navigation Done Right
12 January, 2026When building highly modular iOS apps, one challenge stands out: how do you handle navigation without coupling your feature modules to…
6 posts found. View all tags
When building highly modular iOS apps, one challenge stands out: how do you handle navigation without coupling your feature modules to…
While improving the Chat UI at Sphere, we ran into a problem I couldn’t find a good solution for online: maintaining smooth scroll position…
is a property wrapper that gives views access to shared dependencies—, , , and others built into SwiftUI. But what about app-specific…
and are workhorses of iOS development, but they demand significant boilerplate. That boilerplate often ends up in view controllers…
There are several ways to learn a new technology: Read about it Play with it Implement something similar Most tutorials cover the first two…
According to the Microsoft Docs, a ViewModel acts as an intermediary between the view and the model, handling the view logic. It interacts…