onChanged property

ValueChanged<String>? onChanged
final

Called when the user initiates a change to the TextField's value: when they have inserted or deleted text.

For more information, see EditableText.onChanged.

See also:

Implementation

// TODO(dkwingsmt): Migrate the doc back to macro
// flutter.widgets.editableText.onChanged
// https://github.com/flutter/flutter/issues/189629
///
/// See also:
///
///  * [inputFormatters], which are called before [onChanged]
///    runs and can validate and change ("format") the input value.
///  * [onEditingComplete], [onSubmitted]:
///    which are more specialized input change notifications.
final ValueChanged<String>? onChanged;