diff --git a/tns-core-modules/ui/page/page.ios.ts b/tns-core-modules/ui/page/page.ios.ts index 235589780..a431f7aea 100644 --- a/tns-core-modules/ui/page/page.ios.ts +++ b/tns-core-modules/ui/page/page.ios.ts @@ -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;