zokipirlo
08/30/2021, 9:12 AMTextField
to prevent showing soft input similar to showSoftInputOnFocus
on EditText
?Felix Schütz
08/30/2021, 10:06 AMmodifier = Modifier.onFocusEvent {
keyboardCtrl?.hide()
},
With keyboardCtrl = LocalSoftwareKeyboardController.current
Felix Schütz
08/30/2021, 10:15 AMLocalTextInputService
composition local, which is used by the text field to show the software keyboard. Unfortunately, the relevant method showSoftwareKeyboard
of TextInputService
cannot be overridden to not show the software keyboard.zokipirlo
08/30/2021, 10:33 AMWindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM