Pin Check
This plugin is for use with Apache Cordova and allows your application to check whether pin/keyguard or passcode is setup on iOS and Android phones.
Requires Cordova plugin: cordova-plugin-pincheck. For more info, please see the PinCheck plugin docs.
联系我们?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.
Ionic Pin Check插件的安装(Installation)
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
Ionic Pin Check插件支持的平台(Supported Platforms)
- Android
- iOS
Ionic Pin Check插件的用法(Usage)
import { PinCheck } from '@ionic-native/pin-check/ngx';
import { Platform } from 'ionic-angular';
constructor(private pinCheck: PinCheck, private platform: Platform) { }
...
this.pinCheck.isPinSetup()
.then(
(success: string) => console.log("pin is setup.");,
(error: string) => console.log("pin not setup.");
);