Flutter教程

Pin Check

Contents

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.

https://github.com/shangyilim/cordova-plugin-pincheck

联系我们?

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.

Contact Us Today!

Ionic Pin Check插件的安装(Installation)

ionic cordova plugin add cordova-plugin-pincheck npm install @ionic-native/pin-check
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
ionic enterprise register --key=YOURPRODUCTKEY npm install @ionic-enterprise/pin-check

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