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.
Cordovaの問題で困っていますか?

本格的なプロジェクトを構築している場合、トラブルシューティングに時間を費やす余裕はありません。Ionicのエキスパートが、保守、サポート、統合に関する公式サポートを提供しています。
インストール
Ionic Native Enterprise はIonic Teamが完全にサポートしメンテナンスしているプラグインを利用できます。 詳しくみる か、 エンタープライズプラグインに興味があれば 連絡ください
サポートしているプラットフォーム
- Android
- iOS
利用方法
React
Angular
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.");
);