mrz_scanner_plus 0.1.7
mrz_scanner_plus: ^0.1.7 copied to clipboard
A new Flutter plugin When scanning and photographing a document, only the document image within the mask will be returned.
import 'package:flutter/material.dart';
import 'package:mrz_scanner_plus_example/home_page.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: '护照MRZ扫描',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.blue),
useMaterial3: true,
),
home: const HomePage(),
);
}
}