Skip to content
All tags

#SwiftUI

12 posts tagged with "SwiftUI".

Building a Mini Linker for SwiftUI Previews

How I rewrote Claude-XcodePreviews in Swift and accidentally built a declaration-level dependency resolver.

8 min read
swift swiftui tools +1

Building Lists: A High-Performance Diffable Data Source Framework

A deep dive into the design, performance, and trade-offs behind Lists, a pure-Swift replacement for UICollectionViewDiffableDataSource.

14 min read
swift open-source uikit +2

Teaching AI to See SwiftUI Previews

What I learned building a CLI toolset that captures SwiftUI previews programmatically, giving AI coding assistants a visual feedback loop.

7 min read
swift swiftui tools +1

Using SwiftUI Views in UIViews

Directly add a SwiftUI View to your UIView without a UIHostingController

3 min read
swiftui quicktip

Generating SwiftUI Previews for UIKit

How to quickly generate a preview for your UIKit View

1 min read
swiftUI UIKit quicktip

Cross-Platform Size-Aware SwiftUI

How to quickly extend cross-platform SwiftUI for macOS size classes

1 min read
swiftui quicktip

View Modifiers

How view modifiers work, tips & tricks for declaring our own, and nipping subtle bugs in the bud.

3 min read
swiftui

Data Flow Property Wrappers

With so many property wrappers for data flow and data binding in SwiftUI, it's easy to get confused about which one to use. Here, we'll learn about the differences between State, StateObject, Binding, and ObservedObject. We'll look at when to use each one, and the differences between them.

10 min read
swiftui

Stacks on Stacks

An introduction to some of the most powerful tools in SwiftUI, stack views

4 min read
swiftUI

An Intro to SwiftUI

What is SwiftUI, why should I use it, and what's the most basic building block?

4 min read
swiftui

Just Use A Button

Get highlight styles for SwiftUI views in List, without using a NavigationLink

1 min read
swiftui quicktip

Integrating SwiftUI in Leaf Nodes of your iOS Application

Integrating SwiftUI at the Leaf Nodes

5 min read
UIKit SwiftUI