flutter-autocomplete-textfield
flutter-autocomplete-textfield copied to clipboard
Question : How to access the textvalue if user submitts via keyboard ?
If the user doesn't select a suggestion but instead commits his manual text via keyboard ?
dunno if you still need it, but you can use textChanged function. For eg.
textChanged: (val) { setState(() { [your_var_name]= val; }); },
@arpit-d thanks, much appreciated