Skip to content
This repository has been archived by the owner on Oct 3, 2024. It is now read-only.

Select doesn't working on WEB #27

Open
AbdrahumanFikry opened this issue Jan 29, 2023 · 2 comments · May be fixed by #30
Open

Select doesn't working on WEB #27

AbdrahumanFikry opened this issue Jan 29, 2023 · 2 comments · May be fixed by #30
Labels
bug Something isn't working

Comments

@AbdrahumanFikry
Copy link

AbdrahumanFikry commented Jan 29, 2023

After I enter the word and press on the suggestion ,It doesn't set the field value to the selected option

@4inka

@ismadev
Copy link

ismadev commented Feb 20, 2023

After I enter the word and press on the suggestion ,It doesn't set the field value to the selected option

@4inka
Overlay closes before onTap is called

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.

@4inka 4inka linked a pull request May 2, 2023 that will close this issue
@4inka 4inka added the bug Something isn't working label May 2, 2023
@2lineofcode
Copy link

also happens on macbook.

fixed by modify:

 _focusNode.addListener(() {
      if (_focusNode.hasFocus) {
        openOverlay();
      }
      // else {
      //   closeOverlay();
      // }
    });

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants