Reputation: 45
I'm using the Flutter barcode scanner. What I'm able to achieve is like
But what I need is like this.
Same question was asked here. How to make a customised QR Code Scanner using Flutter?. But I want to customize using the same Flutter barcode scanner package. Can anyone help me with this.
My code is
String barcodeScanRes = await FlutterBarcodeScanner.scanBarcode(
'#00FFB6',
'Exit',
true,
ScanMode.QR,
);
Upvotes: 2
Views: 986
Reputation: 247
You can use qr_code_scanner 1.0.1 which give you ability to customize your scanner as shown below
Upvotes: 1