rsa_scan 0.0.5 copy "rsa_scan: ^0.0.5" to clipboard
rsa_scan: ^0.0.5 copied to clipboard

discontinued
outdated

Scan identity documents such as South African ID Cards, ID Books and Driver's Licenses.

rsa_scan #

Scan identity documents such as South African ID Cards, ID Books and Driver's Licenses.

Supported Documents #

  • ✅ South African ID Cards
  • ✅ South African ID Books
  • ✅ South African Driver's Licenses

Prerequisites #

Since this plugin makes use of Firebase ML Vision for scanning, to use this plugin, add rsa_scan as a dependency in your pubspec.yaml file. You must also configure Firebase for each platform project: Android and iOS (see https://firebase.google.com/docs/flutter/setup?platform=android).

Android #

Add the following declaration to your app's AndroidManifest.xml file:

<application ...>
  ...
  <meta-data
    android:name="com.google.firebase.ml.vision.DEPENDENCIES"
    android:value="barcode" />
</application>

iOS #

Add the line platform :ios, '9.0' in your iOS project Podfile.

You may also need to update your app's deployment target to 9.0 using Xcode. Otherwise, you may see compilation errors.

Include the MLVisionBarcodeModel in your Podfile. Then run pod update in a terminal within the same directory as your Podfile.

pod 'Firebase/MLVisionBarcodeModel'

Add the following key to your Info.plist file, located in <project root>/ios/Runner/Info.plist:

<string>This app requires photo library access to function properly.</string>
<key>NSCameraUsageDescription</key>

Usage #

The package exposes to functions, namely scanIdCard and scanIdBook.

A simple usage example of scanIdCard:

import 'package:rsa_scan/rsa_scan.dart';

RsaIdCard idCard = await scanIdCard(context);
print(idCard.idNumber);
print(idCard.firstNames);
print(idCard.surname);
print(idCard.gender);
// See the API reference for the full set of available properties

A simple usage example of scanIdBook:

import 'package:rsa_scan/rsa_scan.dart';

RsaIdBook idBook = await scanIdBook(context);
print(idBook.idNumber);
print(idBook.birthDate);
print(idBook.gender);
print(idBook.citizenshipStatus);
// See the API reference for the full set of available properties

A simple usage example of scanIdBook:

import 'package:rsa_scan/rsa_scan.dart';

RsaDriversLicense driversLicense = await scanDrivers(context);
print(driversLicense.idNumber);
print(driversLicense.birthDate);
print(driversLicense.gender);
print(driversLicense.citizenshipStatus);
// See the API reference for the full set of available properties

For a more comprehensive example, please see the example application

Features and bugs #

Please file feature requests and bugs at the issue tracker.

12
likes
0
points
53
downloads

Publisher

verified publisherborn.dev

Weekly Downloads

Scan identity documents such as South African ID Cards, ID Books and Driver's Licenses.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

camera, firebase_core, firebase_ml_vision_raw_bytes, flutter, rsa_identification

More

Packages that depend on rsa_scan