OnFocusChanged

constructor(isFocused: Boolean)

Parameters

isFocused

Whether the field currently has focus

Example:

when (event) {
is IdentificationTextFieldEvent.OnFocusChanged -> {
if (event.isFocused) {
showIdentificationHint()
} else {
hideIdentificationHint()
}
}
}