OnFocusChanged
Parameters
isFocused
Whether the field currently has focus
Example:
when (event) {
is IdentificationTextFieldEvent.OnFocusChanged -> {
if (event.isFocused) {
showIdentificationHint()
} else {
hideIdentificationHint()
}
}
}Content copied to clipboard