-
Notifications
You must be signed in to change notification settings - Fork 220
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
Warning: Overriding previous layout animation with new one before the first began #47
Comments
I am getting the same error, after opening, then closing a selector/picker and then auto-focusing on textinput.
could it be related to:facebook/react-native#10606 ? |
Guys any updates on this warning... seems still its not fixed |
+1 |
Any enlightenment would be warmfully welcomed. |
May help, I was running in a similar issue in other project |
Hi guys, I had this error as well, but only on iOS. I only modify the duration of layout animation to something like 1 or 0. Then the error does not show up. Default animation duration of 200 on android works fine for me. |
This pull request seems to have fixed it for me: |
Any idea on how should I fix this? it will happen on production app too, right? it's annoying! to me, it happens when i got the keyboard opened and i show an alert. But this can totally happen with other stuff that i show after the keyboard is up... please help :( |
Turning off Debug worked for me. |
I've noticed this when input focus changes quickly (in debug mode at least). For me setting |
any update on this? |
still have this issue. please share your solutions. |
I'll try this temp solution, seems works
|
This worked, thank you! I ran EDIT: It seems to have introduced a new error
|
nice solution, thanks so much |
One of my components changes state in order to render an InputText, the state change handler has set
LayoutAnimation.configureNext
to animate this state transition. It seems like this is being fired at the same timeKeyboardSpacer
animates itself, throwing the next warning:Both animations (spacer and my component's state change) render without issues.
Is there a way to avoid this?
The text was updated successfully, but these errors were encountered: