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,
) {
final paragraphCount = newValue.text.split('\n').length;
if (paragraphCount <= maxParagraphs) {
return newValue;
} else {
// Limit the input to the maximum number of paragraphs
final lastParagraphIndex = newValue.text.lastIndexOf('\n');
final truncatedText = newValue.text.substring(0, lastParagraphIndex);
return newValue.copyWith(
text: truncatedText,
selection: TextSelection.collapsed(offset: truncatedText.length),
);
}
}