onFieldSubmitted property

SubmitEditableCombobox onFieldSubmitted
final

Called when the text field text is submitted

Return the new value of the text.

In the folllowing example, everytime the user submits the text box, the text is uppercased

EditableComboBox(
  onFieldSubmitted: (text) {
    return text.toUpperCase();
  },
),

Implementation

final SubmitEditableCombobox onFieldSubmitted;