flutter_typeahead
flutter_typeahead copied to clipboard
DropDown Hidden by Keyboard
When there is multiple feild--TextField and the dropdown is at the bottom of the page, Then there we found the issue that, the keyboard just hide all the items listed in dropdown. As the user have to scroll up which look inconvenient.
My suggestion to this is using suggestionsBoxVerticalOffset with a negative value to put the suggestions on top of your input box.
This problem can be solved by: direction: AxisDirection.up
Which change direction of showed suggestions:
I came here with the exact same problem. This would ideally be solved by being compatible with showSearch
My suggestion to this is using suggestionsBoxVerticalOffset with a negative value to put the suggestions on top of your input box.
Can you explain a bit more?
It would be great to have direction
be handled by the widget itself if not provided. It would use AxisDirection.up
only if there's more space up then there is down (taking the keyboard into account).