0.0.0 • Published 8 years ago

cordova-plugin-screen-uility v0.0.0

Weekly downloads
4
License
Apache 2.0
Repository
github
Last release
8 years ago

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