IOS navbar overlaps statusbar

This solved my problem. Thanks

Solved my problem. Thank you

Below solutions worked for me for Ionic 2

To hide IOS top bar when app is running upfront
platform.ready().then(() => {
statusBar.hide();
});

To give padding on top, use below code
platform.ready().then(() => {
StatusBar.overlaysWebView(false);
});

It also solved my problem. Thank You!!!