-
Notifications
You must be signed in to change notification settings - Fork 647
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
Does react-native-keyboard-aware-scroll-view work with focus on next input? #340
Comments
Seems to a known issue. Depending on your props configuration for KeyboardAwareScrollView, there are several suggestions found here. I found that setting keyboardOpeningTime={0} resolved my issue. |
I am having a similar issue. On one of my forms, autoscroll to the next focused input stopped working altogether. |
I have the same issue, setting focus to next input with the onSubmitEditing doesnt autoscroll into view |
Hi Team, |
i too am still facing this |
I have faced same issue. I fixed it by adding these props to KeyboardAwareScrollView
And this props to TextInput |
Still facing the same issue, Any update on this thread? |
Just tested this, looks like the only thing you actually need is to control the blurOnSubmit on your Input components. |
Congrats on the great library that helps with getting out of keyboardAwareView which simply doesnt work and has no documentation to explain that this is the case. This package here should be core.
What im trying to achieve is a use case i imagine would most commonly used with react-native-keyboard-aware-scroll-view. This would be, onSubmitEditing focus on the next field.
Unfortunately the approached i used doesnt seem to work with this package, it seems to jump to the bottom and then focus properly on the TextInput field. Any ideas as to why this might be happening or any alternative suggestions to achieve the same thing? The code used looks like this
Thanks a lot
The text was updated successfully, but these errors were encountered: