Post

Replies

Boosts

Views

Activity

Reply to iPadOS 17.1 SwiftUI DatePicker with onTapGesture
Here is the sameple code @main struct TestApp: App { var body: some Scene { WindowGroup { ContentView() } } } struct ContentView: View { var body: some View { DatePicker("test", selection: .constant(Date()), displayedComponents: .date) .onTapGesture { print("on tap") } } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’23