According to this question, we can hide the status bar in Ionic 2 using the following code:
import {StatusBar} from 'ionic-native';
import {App, Platform} from 'ionic-angular';
constructor(private platform: Platform) {
this.platform.ready().then(()=>{
StatusBar.hide();
}
}
source
share