Update README.md (#168)

Add an iOS Quirks section #166
This commit is contained in:
Kyle Kirby 2019-11-17 05:58:53 -06:00 committed by jcesarmobile
parent 7d5d067f03
commit 24d5f278d0

View File

@ -85,6 +85,15 @@ if (cordova.platformId == 'android') {
}
```
### iOS Quirks
Starting with iOS 11 you must include `viewport-fit=cover` in your viewport meta tag if you want the status bar to overlay the webview:
```html
<meta name="viewport" content="initial-scale=1, width=device-width, viewport-fit=cover">
```
Hiding at startup
-----------