zxing_widget 0.1.0 zxing_widget: ^0.1.0 copied to clipboard
A Barcode Generator Widget that can be embedded inside flutter. It uses zxing-dart for all platforms.
ZXing Widget(Dart)
A Barcode Generator Widget that can be embedded inside flutter. It uses zxing-dart for all platforms.
Features #
- ✅ QRCode
- ✅ PDF417 code
- ✅ DataMatrix code
- ✅ AZTec code
- ✅ OneDemension code
- ✅ Paint callback
Getting started #
flutter pub add zxing_widget
Usage #
See /example
folder.
Scan from camera
BarcodeWidget(
QrcodePainter(
'qrcode data',
errorCorrectionLevel: ErrorCorrectionLevel.H,
foregroundColor: Colors.blue,
),
size: const Size(200, 200),
),
Additional information #
This package depends on zxing_lib witch is a pure dart port of ZXing.