Read about an actual issue in SwiftUI met in a real project making it impossible to compile, and a useful working solution to get around it.
Navigation View Style in SwiftUI
Read about how to change the default navigation view style in SwiftUI using a view modifier, and override the default behavior.
Flavors of SwiftUI Picker on macOS
Find out what the available styles of the SwiftUI Picker view on macOS are, and how the same view can result in different controls.
Embedding SwiftUI Views in Storyboard-Based macOS Apps
Read how to embed SwiftUI views in storyboard-based macOS projects and what to watch out for. Boost your productivity & make coding funnier!
Presenting The Preferences Window On macOS Using SwiftUI
Most macOS apps present a Preferences window to configure settings, and this post demonstrates how to do that in your own apps using SwiftUI.
Displaying Borders in SwiftUI
Displaying borders around views in SwiftUI is easy, and this post shows how to draw borders that are simple, rounded, or have another shape.
Presenting Popovers in SwiftUI
Find out in this quick post how to present a popover in SwiftUI, what’s important to remember, and what you should be expecting from it.
The Redacted View Modifier in SwiftUI
Read about the redacted view modifier in SwiftUI and how to show placeholders while fetching data or displaying sensitive information.
Defining Custom Environment Keys in SwiftUI
Read in this post how to define custom keys in the SwiftUI environment and have values globally accessible throughout the view hierarchy.
Performing Actions On Value Changes In SwiftUI
Read how to observe value changes and trigger additional actions when these happen with the onChange(_:) view modifier in SwiftUI.