How can I dismiss the keyboard after typing the number? I am new to the UI field. I dismissed the normal keyboard after pressing the return button. But how can I do the same in the telephone number keyboard(on the attached picture's keyboard)
Asked
Active
Viewed 29 times
0
-
this is what you are looking for : https://stackoverflow.com/questions/28338981/how-to-add-done-button-to-numpad-in-ios-using-swift – Vikas saini Jul 04 '22 at 12:22
-
For SwiftUI, you can just simply implement that using `@FocusState`and `ToolbarItemGroup(placement: .keyboard)`. [check this out](https://www.hackingwithswift.com/books/ios-swiftui/hiding-the-keyboard) – Seungjun Jul 04 '22 at 12:42