Fix modal page ios dips

This commit is contained in:
Panayot Cankov
2017-03-10 11:28:01 +02:00
parent 1d49f5f3c3
commit cec256f809

View File

@@ -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;