MonOve
MonOve

Reputation: 1101

Odd padding in iPad Cordova app

Can anyone explain this odd padding that exists outside the entire webview?

Our app has been denied by Apple because of this issue.

I have Googled it for days with no success.

enter image description here

Upvotes: 0

Views: 98

Answers (1)

ian
ian

Reputation: 705

Try setting this in your config.xml:

<platform name="ios">
    <preference name="target-device" value="universal" />
</platform>

Universal is the default value, so make sure you are not setting target-device to something else ;)

Upvotes: 1

Related Questions