Posts

Post not yet marked as solved
1 Replies
Same issue here testing with iOS 13, from previous iOS versions (11, 12, etc) it works as expected.Check the example:UINavigationController *safariHackVC = [[ModalSafariViewController alloc] initWithRootViewController:safariVC]; [safariHackVC setNavigationBarHidden:true animated:false]; safariHackVC.modalPresentationStyle = UIModalPresentationFullScreen; safariHackVC.modalTransitionStyle = UIModalTransitionStylePartialCurl; safariHackVC.presentationController.delegate = self; #if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_13_0 if (@available(iOS 13.0, *)) { [safariHackVC setModalInPresentation:TRUE]; } #endif [ctrl presentViewController:safariHackVC animated:animated completion:nil];You can see the code here: https://github.com/proyecto26/react-native-inappbrowser/blob/master/ios/RNInAppBrowser.m#L212Please, any help is really appreciated