This one will work:
You need to use NavigationLink with an activation parameter so that you can track the start of navigation. When switching the navigation link activation parameter, force the keyboard to be removed
extension UIApplication: UIGestureRecognizerDelegate {
func dismissKeyboard() {
sendAction(#selector(UIResponder.resignFirstResponder), to: nil, from: nil, for: nil)
}
}
Button {
UIApplication.shared.dismissKeyboard()
activateLink = true
} label: {
Text("Activate link")
}
.background(
NavigationLink(destination: DestinationView(), isActive: $activateLink) { EmptyView()}
)
In iOS 15, there are no such problems.
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags: