flutter_easy_autocomplete
flutter_easy_autocomplete copied to clipboard
Select doesn't working on WEB
After I enter the word and press on the suggestion ,It doesn't set the field value to the selected option
@4inka
After I enter the word and press on the suggestion ,It doesn't set the field value to the selected option
@4inka
Overlay is unfocused when tapping on the selected item, so the overlay closes and the onTap callback is not called. The easiest workaround is removing the lines where the overlay closes when it loses focus.
also happens on macbook.
fixed by modify:
_focusNode.addListener(() {
if (_focusNode.hasFocus) {
openOverlay();
}
// else {
// closeOverlay();
// }
});