Last updated:
0 purchases
feyins flutter kyc
feyins_flutter_kyc #
The feyins_flutter_kyc package is a powerful and easy-to-use plugin that brings essential Know Your Customer (KYC) functionalities to your Flutter applications.
Features #
Liveness Detection: #
The package allows you to perform real-time liveness detection using the device's camera. Ensure that the user is physically present during the KYC process, preventing fraudulent attempts.
ID Scanning: #
Utilize advanced computer vision techniques to extract information from official identification documents such as passports, driver's licenses, national IDs, and more. Accelerate the KYC process with reliable and accurate data extraction.
Face Matching: #
Enhance identity verification by comparing the facial features between the scanned ID image and the selfie image provided by the user.
Customizable UI: #
Tailor the user interface to match your app's branding and design seamlessly. Customize colors, fonts, and layouts to create a cohesive user experience.
Privacy and Security: #
We prioritize the privacy and security of your users. Our package implements industry-standard security measures to protect sensitive user data during the KYC process.
Getting started #
To get started with the ekyc_flutter package, follow these simple steps:
flutter pub add feyins_flutter_kyc
copied to clipboard
Android #
Add this before <application></application> in your android/app/src/main/AndroidManifest.xml
<uses-feature
android:name="android.hardware.camera"
android:required="false" />
<uses-permission android:name="android.permission.CAMERA" />
copied to clipboard
in <activity> add this
android:requestLegacyExternalStorage="true"
copied to clipboard
in your android/app/build.gradle make minSdkVersion 21
defaultConfig {
minSdkVersion 21
}
copied to clipboard
in android/build.gradle make sure the kotlin version to 1.8.0
buildscript {
ext.kotlin_version = '1.8.0'
}
copied to clipboard
ID Scanning #
For ID Card Scanning, two cases have considered, where the keyword and value are inline (image 1) and the keyword and the value are in the next line.
in EkycServices().openImageScanner() function, pass the keyword name and a boolean
-> if the keyword and the value are inline pass true
-> if the keyword and the value are not inline pass false
For example
Map<String, bool> keyWordData = {
'Name' : false,
'Date of Birth' : true,
'NID No' : false
};
copied to clipboard
Now pass this keyWordData to EkycServices().openImageScanner()
ExtractedDataFromId? extractedDataFromId;
extractedDataFromId = await EkycServices().openImageScanner(keyWordData);
copied to clipboard
The ExtractedDataFromId also contains extractedText. If the ocr text doesn't get parsed from these cases, you can also manipulate the text from the extractedText
Face Matching: #
For running face match go to https://drive.google.com/drive/folders/1Po7VxJsUcH_W0XOenUHzg_IDu1s3_do8?usp=sharing
Download the folder and in the folder directory run this (for ubuntu)
python3 face_match.py
copied to clipboard
for windows
python face_match.py
copied to clipboard
you will see something like this in your console
* Running on all addresses (0.0.0.0)
* Running on http://127.0.0.1:5000
* Running on http://10.0.3.50:5000
copied to clipboard
copy the last address and pass it in EkycServices().runFaceMatch function along with the two imagepath (selfie image and id image) like this
await EkycServices().runFaceMatch("http://10.0.3.50:5000", selfieImage?.path, imageAndText?.imagePath);
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.