userUpdateTextEditingValue method
Indicates that the user has requested the delegate to replace its current
text editing state with value
.
The new value
is treated as user input and thus may subject to input
formatting.
See also:
- EditableTextState.userUpdateTextEditingValue: an implementation that
applies additional pre-processing to the specified
value
, before updating the text editing state.
Implementation
@override
void userUpdateTextEditingValue(TextEditingValue value, SelectionChangedCause cause) {
_textFormControlElement._formatAndSetValue(value, userInteraction: true, cause: cause);
}