Skip to content

jeffchienzabinet/PinDialog

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 plugin add hu.dpal.phonegap.plugins.pindialog
or cordova plugin add hu.dpal.phonegap.plugins.pindialog

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

Installation - PhoneGap Build

Add following to config.xml: <gap:plugin name="hu.dpal.phonegap.plugins.pindialog" /> or <gap:plugin name="hu.dpal.phonegap.plugins.pindialog" source="plugins.cordova.io" />

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");
    }
};

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 67.9%
  • Objective-C 27.2%
  • JavaScript 4.9%