mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2024-12-17 17:20:21 +01:00
android: proper hiding keyboard when entering passcode (#4066)
This commit is contained in:
committed by
GitHub
parent
2b6764fc36
commit
f80ac6dc50
+4
-1
@@ -67,10 +67,13 @@ actual fun getKeyboardState(): State<KeyboardState> {
|
||||
return keyboardState
|
||||
}
|
||||
|
||||
actual fun hideKeyboard(view: Any?) {
|
||||
actual fun hideKeyboard(view: Any?, clearFocus: Boolean) {
|
||||
// LALAL
|
||||
// LocalSoftwareKeyboardController.current?.hide()
|
||||
if (view is View) {
|
||||
if (clearFocus) {
|
||||
view.clearFocus()
|
||||
}
|
||||
(androidAppContext.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager).hideSoftInputFromWindow(view.windowToken, 0)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user