Prevented full screen swipe pop gesture conflict #890
Merged
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.
Swiping to scroll a horizontal list incorrectly triggered the full screen pop gesture. This conflict happened because the Navigation router was deciding when to begin the gesture instead of leaving it up to iOS. Tried various things to prevent the conflict but no luck (even the gesture experts at software mansion struggling with it). Ideally want the default pop gesture handling built into iOS. But implementing
animationControllerForOperationinUINavigationControllerDelegatestops iOS from running its default pop gestures - even when returning nil.First implemented
animationControllerForOperationwhen introducing custom animations in #778. But custom animations in iOS are very rare and they don't even work that well in iOS 26 because iOS waits for them to complete before starting the next one (unlike the default animations), making them feel dated.Changed to only implement
animationControllerForOperationwhen custom animations are on. Created 2UINavigationControllerDelegates- one withoutanimationControllerForOperationand one with. Then choose which one to use based on thecustomAnimationsprop. That way, 99% of the time (custom animations off) iOS handles the pop gestures and prevents the conflict with horizontal lists, for example.