Skip to content

Instantly share code, notes, and snippets.

@gtokman
Created March 13, 2021 22:16
Show Gist options
  • Save gtokman/8015d40621c6aa7818da80f206f2a262 to your computer and use it in GitHub Desktop.
Save gtokman/8015d40621c6aa7818da80f206f2a262 to your computer and use it in GitHub Desktop.
Show/Dismiss keyboard
import SwiftUIX
import Introspect
var body: some View {
NavigationView {
// ...
.onTapGesture {
print(friend.name)
Keyboard.main.dismiss() // inactive
}
//...
}
.introspectTextField { textfield in
textfield.becomeFirstResponder() // active
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment