Skip to content Skip to sidebar Skip to footer

Ionic Statusbar Not Hiding

I have added the plugin Cordova-plugin-statusbar. It was working before I updated ionic and Cordova. After Updating, its not working. I'm totally confused and revert back to the ol

Solution 1:

Make sure cordova-plugin-statusbar is correctly setup and try this:

$ionicPlatform.ready(function() {
  ionic.Platform.fullScreen();
  if (window.StatusBar) {
    return StatusBar.hide();
  }
});

Then try adding 'fullscreen' class to your body tag

Post a Comment for "Ionic Statusbar Not Hiding"