OnValueChanged

Event triggered when the identification value changes. This event is fired whenever the user types or deletes characters, providing the current input value.

Parameters

value

The current text value of the identification field

Example:

when (event) {
is IdentificationTextFieldEvent.OnValueChanged -> {
updateIdentificationValue(event.value)
}
}

Constructors

Link copied to clipboard
constructor(value: String)

Properties

Link copied to clipboard