Local Authentication with Flutter
In this post I am going to implement this feature using flutter and dart. First of all download and install flutter SDK from https://flutter.dev/docs/get-started/install/windows Create a project: Enter this command in command prompt "flutter create signin_flutter" Importing packages: Now import the plug-in local_auth by adding the following line to your project's pubspec.yaml file. "loacl_auth: ^0.4.0+1." you can also find latest version on https://pub.dev/packages/local_auth Adding Permissions: In order to have authentication working correctly on android we have to update AndriodManifesto.xml file to include the USE_FINGERPRINT permission. "<uses-permission android:name="android.permission.USE_FINGERPRINT"/>" we can find the file here Your project directory...\signin_flutter\android\app\src\main\AndroidManifest.xml Adding local Authentication: import local_auth package in main.dart file