OnInputFilled

Event triggered when the security code input is completely filled. This event indicates whether all required digits for the security code have been entered.

Parameters

isFilled

Whether all required digits have been entered

Example:

when (event) {
is SecurityCodeTextFieldEvent.OnInputFilled -> {
if (event.isFilled) {
enableNextButton()
}
}
}

Constructors

Link copied to clipboard
constructor(isFilled: Boolean)

Properties

Link copied to clipboard