formatEditUpdate method
Called when text is being typed or cut/copy/pasted in the EditableText.
You can override the resulting text based on the previous text value and the incoming new text value.
When formatters are chained, oldValue
reflects the initial value of
TextEditingValue at the beginning of the chain.
Implementation
@override
TextEditingValue formatEditUpdate(
TextEditingValue oldValue,
TextEditingValue newValue,
) {
if (maxLength != null &&
maxLength! > 0 &&
newValue.text.characters.length > maxLength!) {
if (oldValue.text.characters.length == maxLength) {
return oldValue;
}
// ignore: invalid_use_of_visible_for_testing_member
return LengthLimitingTextInputFormatter.truncate(newValue, maxLength!);
}
return newValue;
}