flutter-autocomplete-textfield icon indicating copy to clipboard operation
flutter-autocomplete-textfield copied to clipboard

Controller is not getting updated on textsubmitted

Open siddesh3101 opened this issue 2 years ago • 1 comments

textField = SimpleAutoCompleteTextField( key: key, decoration: InputDecoration( border: OutlineInputBorder(), ), // decoration: InputDecoration(errorText: "Beans"), controller: contoller, suggestions: _data, textChanged: (text) => currentText = text, clearOnSubmit: true, textSubmitted: (text) { textField!.controller!.text = "Sid"; contoller.text = "s"; setState(() { if (text != "") { print(contoller.text); added.add(text); } }); });

siddesh3101 avatar Apr 02 '23 15:04 siddesh3101

I can confirm this widget is not working as advertised.

mauricev avatar Aug 10 '23 03:08 mauricev