menu

Open ionic app in full screen

  • date_range 01/08/2015 00:00 info
    sort label

To hide the status bar in an Ionic application, we use the Cordova status bar plugin.Install the status bar plugin from the given link.
Status bar
Inside app.js write the following code inside .run method

1
2
3
4
5
app.run(function($cordovaStatusbar){
  $ionicPlatform.ready(function () {
		    $cordovaStatusbar.hide();
	    })
	})