formatEditUpdate method

  1. @override
TextEditingValue formatEditUpdate(
  1. TextEditingValue oldValue,
  2. TextEditingValue newValue
)
override

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) {
  var newText = newValue.text.replaceAll("/", "");

  if (newValue.selection.baseOffset == 0) {
    return newValue;
  }

  var buffer = new StringBuffer();
  for (int i = 0; i < newText.length; i++) {
    buffer.write(newText[i]);
    print(newText[i]);
    var nonZeroIndex = i + 1;
    if (nonZeroIndex % 2 == 0 && nonZeroIndex != newText.length) {
      buffer.write('/');
    }
  }

  var string = buffer.toString();
  return newValue.copyWith(
      text: string,
      selection: new TextSelection.collapsed(offset: string.length));
}