-
Notifications
You must be signed in to change notification settings - Fork 24.4k
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
[NavigationExperimental] Kill NavigationAnimatedView #8269
Conversation
NavigationAnimatedView is deprecated. Use NavigationTransitioner Related to facebook#8262, facebook#8189
By analyzing the blame information on this pull request, we identified @hedgerwang and @ericvicenti to be potential reviewers. |
@ericvicenti can you take care of this? I'm thinking there might be callers of NavigationAnimatedView still within FB-internal code and deleting the file will break internal apps/tests. |
@ide, you read my mind! |
@facebook-github-bot import |
Thanks for importing. If you are an FB employee go to Phabricator to review. |
@ericvicenti Also, there is a bug in /cc @hedgerwang 🍺 |
NavigationTransitioner is very very slow compared to previous NavigationAnimatedView. With NavigationAnimatedView the transition was instant, but now with NavigationTransitioner the same change takes like 3 seconds. |
@tpisto, I don't think NavigationTransitioner is inherently much slower, but it depends on how it is used. Could you post a code snippet that demonstrates how slow it is now? |
Hi! Thank you for quick reply. I am using this solution: But before I used AnimatedView. And with AnimatedView animations go like this: After updating to 0.30.0 and switching to Transitioner the animations go like this (not that I click the arrow down when the cursor moves slightly - so making many seconds the transition to happen): There are no any additional changes to code - just 0.29.2 -> 0.30.0 and AnimatedView -> Transitioner. (And Transitioner seems to need render instead of renderScene) |
@tpisto Is this still an issue you're facing or were you able to figure it out? Debating on upgrading to 0.30.0 but might hold off if you're still seeing this issue. |
Summary: NavigationAnimatedView is deprecated. Use NavigationTransitioner. As discussed in facebook#8262, facebook#8189. Closes facebook#8269 Reviewed By: hedgerwang Differential Revision: D3462087 Pulled By: ericvicenti fbshipit-source-id: 6d7504cb8533f12a3610d34ef5b35edcf79fd5b7
Summary: NavigationAnimatedView is deprecated. Use NavigationTransitioner. As discussed in facebook#8262, facebook#8189. Closes facebook#8269 Reviewed By: hedgerwang Differential Revision: D3462087 Pulled By: ericvicenti fbshipit-source-id: 6d7504cb8533f12a3610d34ef5b35edcf79fd5b7
NavigationAnimatedView is deprecated. Use NavigationTransitioner.
As discussed in #8262, #8189.