Guhan
Guhan

Reputation: 45

How to customize the Flutter barcode scanner

I'm using the Flutter barcode scanner. What I'm able to achieve is like

enter image description here

But what I need is like this.

enter image description here

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

Answers (1)

Abdullatif Eida
Abdullatif Eida

Reputation: 247

You can use qr_code_scanner 1.0.1 which give you ability to customize your scanner as shown below enter image description here

Upvotes: 1

Related Questions