-
Notifications
You must be signed in to change notification settings - Fork 166
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bug: the TextField
is hidden below the KeyboardActionsItem
#233
Comments
Same problem here 🙁. @yeikel16 did you find a solution ? |
Same problem here. overscroll with use Slivers don't work. How to fix it? |
I believe you need to have disableScroll set to false for it to scroll. When I did this in my project, I got many render errors and fixed them by wrapping the scrollview with the KeyboardActions widget instead of making the KeyboardActions widget a descendant of the scroll view. This is quite annoying since you can't make the text fields reusable in this way and if your scroll view is way up the tree, then you have to pass the focus node all the way down to your text field. Ideally, the KeyboardActions widget would work anywhere. Maybe there could be an improvement to the library to fix this. |
using the scrollPadding of a TextField works well in my case |
I found that setting |
I have a complex layout that uses Slivers and when a TextField is focused, it is hidden beneath the KeyboardActionsItem.
I am using:
Example:
The text was updated successfully, but these errors were encountered: