Neat Software
Neat Software

Neat Software

Follow
homeApps
Tag

SwiftUI

#swiftui

More content

Read more stories on Hashnode


Articles with this tag

SwiftUI Vertical Divider

Jan 10, 2023

struct VerticalDividerExample: View { var body: some View { HStack(spacing: 20) { Text("Left") ...

SwiftUI Vertical Divider

SwiftUI: Picker with Optional Binding

Dec 14, 2022

struct ContentView: View { @State var selection: String? var body: some View { Picker("Select:", selection: $selection) { ...

SwiftUI: Picker with Optional Binding

Adding System Sound Effects to a macOS App in Swift

Jul 22, 2022

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...

Adding System Sound Effects to a macOS App in Swift