Created
March 13, 2021 22:16
-
-
Save gtokman/8015d40621c6aa7818da80f206f2a262 to your computer and use it in GitHub Desktop.
Show/Dismiss keyboard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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