feat(ios): custom modal transitions part 2

This commit is contained in:
Nathan Walker
2022-09-15 19:36:02 -07:00
parent c2b88f7546
commit 0e9ec677ae

View File

@@ -913,7 +913,9 @@ export class View extends ViewCommon implements ViewDefinition {
private _setupAdaptiveControllerDelegate(controller: UIViewController) {
this._adaptivePresentationDelegate = IOSHelper.UIAdaptivePresentationControllerDelegateImp.initWithOwnerAndCallback(new WeakRef(this), this._closeModalCallback);
controller.presentationController.delegate = <UIAdaptivePresentationControllerDelegate>this._adaptivePresentationDelegate;
if (controller?.presentationController) {
controller.presentationController.delegate = <UIAdaptivePresentationControllerDelegate>this._adaptivePresentationDelegate;
}
}
}
View.prototype._nativeBackgroundState = 'unset';