AmolGangadhare / flutter_barcode_scanner

Barcode scanner plugin for flutter. Supports barcode scanning for Android and iOS
https://pub.dev/packages/flutter_barcode_scanner
MIT License
379 stars 451 forks source link

QRCode gets scanned in barcode mode #123

Open plokmij opened 3 years ago

plokmij commented 3 years ago

QR Code gets scanned even when barcode mode is selected.

To Reproduce

String barcodeText = await FlutterBarcodeScanner.scanBarcode(
                      "blue",
                      'CANCEL',
                      true,
                      ScanMode.BARCODE,
);

Expected behavior Stay in Camera view

moseskarunia commented 3 years ago

See the docs. The library will scan both barcodes regardless of the mode.

plokmij commented 3 years ago

See the docs. The library will scan both barcodes regardless of the mode.

That's the problem. In Barcode mode I expected it to scan only barcodes.

logan033 commented 3 years ago

See the docs. The library will scan both barcodes regardless of the mode.

That's the problem. In Barcode mode I expected it to scan only barcodes.

Have you found any workaround for that or atleast a callback weather it is a QrCode or barcode?