Reputation: 163
I need to make my app fullscreen like Google Maps (with content all over display including status bar).
I was able to make html body fullscreen.
But I can't make inappbrowser to use all body height. It starts below status bar.
How can I make inappbrowser starts on body top?
Upvotes: 0
Views: 164
Reputation: 1
It possible only via modify plugin files: plugins/cordova-plugin-inappbrowser/src/ios/CDVWKInAppBrowser.m
Go to this string
CGFloat statusBarHeight = [self getStatusBarOffset];
... and change it to 0:
CGFloat statusBarHeight = 0.0;
Upvotes: 0
Reputation: 807
inappbrowser respects whatever setting you have for your app. You have two options:
Upvotes: 0