/PinDialog

PhoneGap numeric password dialog plugin for Android and iOS. Forked from https://github.com/apache/cordova-plugin-dialogs.git

Primary LanguageJavaMIT LicenseMIT

PinDialog

PhoneGap numeric password dialog plugin for Android and iOS. Forked from https://github.com/apache/cordova-plugin-dialogs.git

Installation

Latest stable release: phonegap local cordova-plugin-pin-dialog
or cordova plugin add cordova-plugin-pin-dialog

Current state from git: phonegap local plugin add https://github.com/Paldom/PinDialog.git
or cordova plugin add https://github.com/Paldom/PinDialog.git

Version with disable closing by back button on Android: cordova plugin add https://github.com/Sveta-K13/PinDialog.git

Supported Platforms

  • Android
  • iOS

Usage:

// Show pin dialog
window.plugins.pinDialog.prompt("message", callback, "title", ["OK","Cancel"]);

Callback:

function callback(results)
{
    if(results.buttonIndex == 1)
    {
        // OK clicked, show input value
        alert(results.input1);
    }
    if(results.buttonIndex == 2)
    {
        // Cancel clicked
        alert("Cancel");
    }
};

License

MIT License