onTextChanged property

ValueChanged<String>? onTextChanged
final

Called when the text field text is changed.

In the following example, everytime the user types a character, the text is printed to the console.

EditableComboBox(
  onTextChanged: (text) {
    print(text);
  },
),

See also:

  • onChanged, which is called when the selected value changes.

Implementation

final ValueChanged<String>? onTextChanged;