maheshj01 / searchfield

A highly customizable simple and easy to use flutter Widget to add a searchfield to your Flutter Application.This Widget allows you to search and select from list of suggestions.
MIT License
84 stars 63 forks source link

Filtering Suggestion List then Using Arrow Keys and Enter not returning expected result #126

Closed murvkins closed 7 months ago

murvkins commented 7 months ago

Describe the bug If you type a letter or two in the SearchField to filter the suggestions, then use the arrow keys to select one of the filtered items and press Enter, the item of the unfiltered suggestion list at the index of the selected item of the filtered list is returned instead.

To Reproduce Using the example code on pub.dev, click in the Basic SearchField and type "d", then arrow down with "DEF" highlighted and press enter. The resulting text in the SearchField is "ABC" instead of "DEF".

maheshj01 commented 7 months ago

Hello @murvkins, Thanks for filing the issue. I was able to reproduce the issue.

maheshj01 commented 7 months ago

fixed in v0.9.9 Thank you for your contribution!