A package for scanning IBANs (international bank account numbers) with the help of the smartphone camera and Google's ml kit.
This package is heavily inspired by the package google_ml_kit and their great examples.
Add this package as dependency in your pubspec.yaml.
dependencies:
flutter_iban_scanner:
Import the package.
import 'package:flutter_iban_scanner/flutter_iban_scanner.dart';
Call the IBANScannerView
widget and provide an onScannerResult
callback for handling the result of the scanner.
IBANScannerView(
onScannerResult: (iban) => {
// do stuff here with the scanned iban
},
),
Check out the example app for a possible usecase.
Any pull requests and extension ideas are welcome.
The Flutter IBAN Scanner package is written by Sebastian Büchler