How to remove focus from a TextField on back button click. Keyboard is gone, but a TextField still has a focus, cursor etc.
I've saw this link, bo I am not getting onFocusEvent, because it still is focused.
var textFieldValue = remember { mutableStateOf(TextFieldValue("")) }
TextField(
value = textFieldValue.value,
onValueChange = { textFieldValue.value = it},
)