mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +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 size = frame.size;
|
||||
let width = size.width;
|
||||
let height = size.height;
|
||||
let width = layout.toDevicePixels(size.width);
|
||||
let height = layout.toDevicePixels(size.height);
|
||||
let mode: number = layout.EXACTLY;
|
||||
|
||||
let superViewRotationRadians;
|
||||
|
Reference in New Issue
Block a user