matteoandreozzi

Results 1 issues of matteoandreozzi

`String newText = suggestion.toString(); if (submitOnSuggestionTap) { textField.focusNode.unfocus(); itemSubmitted(suggestion); if (clearOnSubmit) { clear(); } } else { String newText = suggestion.toString(); textChanged(newText); } textField.controller.text = appendOnTap? textField.controller.text +newText: newText;` I...