В моем случае мне нужно было изменить цвет фона строки состояния и цвет содержимого в IOS .
нужен первый установленный плагин I .
ionic cordova plugin add cordova-plugin-statusbar
npm install --save @ionic-native/status-bar@4 // version 4 since ionic 3
затем в app.comopenet.ts
constructor(statusBar: StatusBar, platform: Platform) {
platform.ready().then(() => {
statusBar.overlaysWebView(false);
// overlaysWebView must set to false if you change the background color in iOS with ionic (hence I am using backgroundColorByHexString method )
statusBar.backgroundColorByHexString('#c8102e');
// used above hex color code to set the status bar background color
statusBar.styleLightContent();
// above function will change the status bar content (icon , text)
statusBar.show();
// finally shows the status bar
});
}
и наконец я получил то, что мне нужно