mrz_sc_mlkit 1.0.0
mrz_sc_mlkit: ^1.0.0 copied to clipboard
An extension for the mrz_sc package that utilizes Google ML Kit Text Recognition for on-device parsing.
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: Scaffold(body: Center(child: Text('ML Kit MRZ Scanner Extension'))),
);
}
}