phaser-es6-webpack
phaser-es6-webpack copied to clipboard
Cordova iOS run && iPhone White Bar
- Building Cordova for xcode 10.
- Since the update to xcode 10
cordova run iosdoes not work, instead use: cordova run ios --buildFlag='-UseModernBuildSystem=0'
- I believe any iPhone beyond iPhone 8-plus has a white bar on top of the application. This can be fixed by modifying the
index.htmlfile to includeviewport-fit=cover:
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, viewport-fit=cover">
I hope this helps anyone having issues getting the project to work with iOS.