We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29c3ae2 commit 6cce021Copy full SHA for 6cce021
1 file changed
ios/RNSScreenStack.mm
@@ -77,7 +77,8 @@ - (void)viewDidLayoutSubviews
77
RNSScreen *screenController = (RNSScreen *)self.topViewController;
78
BOOL isNotDismissingModal = screenController.presentedViewController == nil ||
79
(screenController.presentedViewController != nil &&
80
- ![screenController.presentedViewController isBeingDismissed]);
+ ![screenController.presentedViewController isBeingDismissed]) ||
81
+ ([screenController.presentedViewController isKindOfClass:[UISearchController class]]);
82
83
// Calculate header height during simple transition from one screen to another.
84
// If RNSScreen includes a navigation controller of type RNSNavigationController, it should not calculate
0 commit comments