cordova-plugin-screen-uility
v0.0.0
Published
Cordova screen uility plugin that enable an application to disable the status bar, the on screen button (navigation button) thus allow the application to be in full screen mode and also set the display timeout to infinite.
Downloads
5
Maintainers
Readme
cordova-plugin-screen-util
=========
A small library providing utility methods to disable
the status bar of an application as well as the navigation button on the screen thus allowing the application to be in full screen mode. In addition, it provides the method to disable
timeout for that particular application thus enable it to stay awake.
Constraint
Installation
cordova plugin add cordova-plugin-screen-util
Usage
In the index.html include :
<script src="ScreenUtil.js"></script>
below the cordova.js script.
//in cordova
document.addEventListener("deviceready", function () {
setTimeout(function () {
ScreenUtil.settings("FULL_SCREEN");
ScreenUtil.settings("DISABLE_TIMEOUT");
}, 500);
}, false);
//in ionic
angular.module('yourModule')
.controller('yourController', function ($scope, $timeout) {
angular.element(document).ready(function () {
$timeout($scope.ScreenCalibrate, 500);//invoking the plugin in a timeout function
});
$scope.ScreenCalibrate = function () {
ScreenUtil.settings("FULL_SCREEN");
ScreenUtil.settings("DISABLE_TIMEOUT");
};
});
Release History
- 0.0.0 Initial release