1.1.3 • Published 6 years ago

cordova-plugin-screen-pinning v1.1.3

Weekly downloads
5
License
MIT
Repository
github
Last release
6 years ago

Cordova screen pinning plugin

Cordova plugin that exposes screen pinning APIs on Android (API 21+).

Installation

Run the following command inside your project's folder:

cordova plugin add cordova-plugin-screen-pinning

If you are using Ionic run the following command instead:

ionic cordova plugin add cordova-plugin-screen-pinning

Usage

enterPinnedMode()

Function that makes the app enter pinned mode. It accepts the following parameters:

  • successCallback: Function optional - Success callback function.
  • errorCallback: Function optional - Error callback function, takes the message string as the only parameter.
cordova.plugins.screenPinning.enterPinnedMode(successCallback, errorCallback);

Example

// Enter pinned mode
cordova.plugins.screenPinning.enterPinnedMode(
    function () {
        console.log("Pinned mode activated!");
    },
    function (errorMessage) {
        console.log("Error activating pinned mode:", errorMessage);
    }
);

exitPinnedMode()

Function that makes the app exit pinned mode. It accepts the following parameters:

  • successCallback: Function optional - Success callback function.
  • errorCallback: Function optional - Error callback function, takes the message string as the only parameter.
cordova.plugins.screenPinning.exitPinnedMode(successCallback, errorCallback);

Example

// Exit pinned mode
cordova.plugins.screenPinning.exitPinnedMode(
    function () {
        console.log("Pinned mode de-activated!");
    },
    function (errorMessage) {
        console.log("Error exiting pinned mode:", errorMessage);
    }
);