mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 04:41:36 +08:00
Merge pull request #3769 from NativeScript/fix-modal-dips
Fix modal page ios dips
This commit is contained in:
@ -91,8 +91,8 @@ class UIViewControllerImpl extends UIViewController {
|
|||||||
|
|
||||||
let frame = isFullScreen ? getter(UIScreen, UIScreen.mainScreen).bounds : this.view.frame;
|
let frame = isFullScreen ? getter(UIScreen, UIScreen.mainScreen).bounds : this.view.frame;
|
||||||
let size = frame.size;
|
let size = frame.size;
|
||||||
let width = size.width;
|
let width = layout.toDevicePixels(size.width);
|
||||||
let height = size.height;
|
let height = layout.toDevicePixels(size.height);
|
||||||
let mode: number = layout.EXACTLY;
|
let mode: number = layout.EXACTLY;
|
||||||
|
|
||||||
let superViewRotationRadians;
|
let superViewRotationRadians;
|
||||||
|
Reference in New Issue
Block a user