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) {
String text = newValue.text;
// Remove any non-digit characters
text = text.replaceAll(RegExp(r'\D'), '');
// Format the text in groups of 4 digits
StringBuffer formattedText = StringBuffer();
for (int i = 0; i < text.length; i++) {
if (i > 0 && i % 4 == 0) {
formattedText.write(' ');
}
formattedText.write(text[i]);
}
// Return the formatted text
return newValue.copyWith(
text: formattedText.toString(),
selection: TextSelection.collapsed(offset: formattedText.length),
);
}