Bluesky app fork with some witchin' additions 馃挮
at main 11 lines 809 B view raw view rendered
1# react-native-pager-view+6.8.0.patch 2 3Adds support for iOS 26's `interactiveContentPopGestureRecognizer` (full-screen back gesture). 4 5The pager already handles `RNSPanGestureRecognizer` (react-native-screens' custom full-screen gesture for pre-iOS 26) in `shouldRecognizeSimultaneouslyWithGestureRecognizer:`. It checks if the user is on the leftmost page and swiping right - if so, it disables the scrollview's pan gesture to let the back gesture through. 6 7This patch adds the same logic for iOS 26's native `interactiveContentPopGestureRecognizer`, so the back gesture works on the leftmost page while the pager still handles swipes on other pages. 8 9Related issues: 10- https://github.com/software-mansion/react-native-screens/issues/3512 11- https://github.com/software-mansion/react-native-screens/pull/3420