Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id CEB75200D08 for ; Thu, 21 Sep 2017 15:41:22 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id CD41B1609D0; Thu, 21 Sep 2017 13:41:22 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 4744D1609B8 for ; Thu, 21 Sep 2017 15:41:22 +0200 (CEST) Received: (qmail 23534 invoked by uid 500); 21 Sep 2017 13:41:21 -0000 Mailing-List: contact dev-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list dev@cordova.apache.org Received: (qmail 23523 invoked by uid 99); 21 Sep 2017 13:41:21 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Sep 2017 13:41:21 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id D0597F5674; Thu, 21 Sep 2017 13:41:20 +0000 (UTC) From: mhartington To: dev@cordova.apache.org Reply-To: dev@cordova.apache.org References: In-Reply-To: Subject: [GitHub] cordova-plugin-statusbar issue #85: CB-13273: fix statusbar spacing with new... Content-Type: text/plain Message-Id: <20170921134120.D0597F5674@git1-us-west.apache.org> Date: Thu, 21 Sep 2017 13:41:20 +0000 (UTC) archived-at: Thu, 21 Sep 2017 13:41:23 -0000 Github user mhartington commented on the issue: https://github.com/apache/cordova-plugin-statusbar/pull/85 This pr does not address everything. In order to have full iPhoneX support you need the following 1) `viewport-fit=cover` added to your meta tag, this will tell the webview to use the full screen real estate 2) A launch storyboard image for your splashscreen. This is a single 2732x2732 image that will be cropped to fix different screen sizes. An example project can be found here. https://github.com/kerrishotts/lsb-example-simple What this PR _DOES_ is address a sizing issue for the statusbar plugin. Since it was hardcoded to 20px, it would create a small gap when you used viewport-fit and the storyboard image. ![simulator screen shot - iphone x - 2017-09-13 at 16 53 55](https://user-images.githubusercontent.com/2835826/30698716-be64293a-9eb0-11e7-944d-79f434f247f5.png) But applying this fix, along with the others, you can remove that gap. ![simulator screen shot - iphone x - 2017-09-18 at 12 42 54](https://user-images.githubusercontent.com/2835826/30698788-fa3da8be-9eb0-11e7-9d44-21edc2689478.png) --- --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org For additional commands, e-mail: dev-help@cordova.apache.org