fix(iOS): restore behaviour of RNSScreenStackAnimationNone #2565
+70
−26
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