I’ve been trying to use PinDialog. It doesn’t seem to be working though. I’ve tried other native plugins like geolocation and camera and both are working as expected.
I would love to describe more, but nothing at all happens. Nothing in console, nothing on the page.
import { PinDialog } from 'ionic-native';
…
platform.ready().then(() => {
PinDialog.prompt('Enter your PIN', 'Verify PIN', ['OK', 'Cancel'])
.then(
(result: any) => {
if (result.buttonIndex == 1) console.log('User clicked OK, value is: ', result.input1);
else if(result.buttonIndex == 2) console.log('User cancelled');
}
);
});
