Mahesh Jamdade
Mahesh Jamdade
I think that would be unnecessary work to recreate the overlay everytime, considering the overlay widget could be a custom heavy widget with long list of items, But we can...
~Sounds good to me feel free to send a PR, I will be travelling but I can review the PR. Otherwise I can take a look at it over the...
Published a new release [v1.1.7](https://pub.dev/packages/searchfield) Thank you for your contribution!
@franzlst I will have to reopen this issue, The [commit made to fix this issue](https://github.com/maheshj01/searchfield/commit/0fddae486c8538307b9719e9230739733d5db378) broke the keyboard functionality #179. I am reverting back that change.
@franzlst Curious is this still and issue with the latest version of the package [v1.29](https://pub.dev/packages/searchfield)?
I am going to close this issue as solved for now. Should anyone encounter this issue feel free to comment here or file a new issue and I would love...
Hey @emadaltaki, Thanks for filing the issue. I am aware of this issue. For such situations where the input text is bottom of the screen Searchfield should dynamically place suggestions...
Hey @yewtecumang, Thanks for filing the issue. Please share a minimal and complete sample code to investigate the issue.
@yewtecumang You can implement your custom search logic using `onSearchTextChanged` use the latest version of the package [v1.29](https://pub.dev/packages/searchfield) ```dart onSearchTextChanged: (searchText) { if (searchText.isEmpty) { return cities; } // filter...
> onSearchTextChanged will work while we change something in textform right. But im not chaning any thing in textform im just redirtecting from another widget on on focus the list...