Articles and how-tos about Swift, SwiftUI, macOS and iOS development from Neat Software Co.
struct VerticalDividerExample: View { var body: some View { HStack(spacing: 20) { Text("Left") ...
struct ContentView: View { @State var selection: String? var body: some View { Picker("Select:", selection: $selection) { ...
Access the native OS sounds and pick them in SwiftUI ยท When creating a macOS app, oftentimes sound feedback is a nice feature to add polish. We can even...