mrzflutterplugin
MRZ Scanner flutter plugin
Getting Started
Import the plugin
Add the following dependancy to pubspec.yaml
:
mrzflutterplugin: ^1.0.2
In your main.dart
import the plugin:
import 'package:mrzflutterplugin/mrzflutterplugin.dart';
iOS
The MRZScanner plugin requires camera usage so you need to specify the camera usage description in iOS poject's Info.plist
<key>NSCameraUsageDescription</key>
<string>Camera is requred for MRZ scanning</string>
Usage
Please refer to the example
project for usage example.