-
-
Notifications
You must be signed in to change notification settings - Fork 527
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
fix(iOS): restore behaviour of RNSScreenStackAnimationNone #2565
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Is this a fix for #2536? |
kkafar
force-pushed
the
@kkafar/fix-none-animation-ios
branch
from
December 13, 2024 10:17
df7f1a4
to
567242b
Compare
Can we get the fixed none behavior shipped with another rc? Or do I have to patch? |
I'll release it today's evening |
I'm tracking now the "header animation", when the animation-none-bc-hr.mov |
Yeah, that is great. Thanks for fixing the header mess, was always very unfortunate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
There is still some header animation noticeable for some reason. <-- This is because we use
fade
transition with duration 0 and do not override interruptible animator! To prevent the animation we could either returnnil
interruptible animator (but overriding the method comes with it's own set of problems, see #2563 and other related) or handle thenone
animation much earlier, when callingshowViewControllers:animated:
inupdateContainer
(passanimated: NO
).PS: If we would want to pass
animated: NO
I wonder what would happen to dismiss prevention - we implemented it at the stage of the animation start... We need to think this through.Note: Must be implemented with old animation API, because
UIViewPropertyAnimator
does not allow for 0 duration (it uses default if the specified animation duration is below some undocumented treshold).This regression was introduced with #2477
Changes
We now use old API for
animation: none
& still rely on fade animation to implement it. Note the points made above ☝🏻 - we should refactor this code to make advantage ofanimated:
parameter of theshowViewControllers:animated:
.Test code and steps to reproduce
TestAnimation
- set stack presentation tonone
- it works as prior to v4.WIP VIDEO
Checklist