Top of phone transparent only on IOS

Hello guys, I developed my ionic2 app, but when I run on the iphone the topbar of the cellphone stays transparent, and my app don’t look nice…

Here some screens:

IPHONE WRONG:

ANDROID RIGHT:
image

Someone knows what I need to do to fix this on Iphone?

Thanks!

Check out the documentation at http://ionicframework.com/docs/v2/native/status-bar/

In app.ts at your initializeApp function just put

StatusBar.overlaysWebView(false); StatusBar.backgroundColorByHexString('#ffffff');

Replacing the hex string with whichever color you prefer.