Skip to content

Instantly share code, notes, and snippets.

@r-yeates
Created March 19, 2022 14:15
Show Gist options
  • Save r-yeates/60a51654457f3652581702e173af38ed to your computer and use it in GitHub Desktop.
Save r-yeates/60a51654457f3652581702e173af38ed to your computer and use it in GitHub Desktop.
body: Stack(
children: [
MobileScanner(
allowDuplicates: false,
controller: cameraController,
onDetect: (barcode, args) {
final String? code = barcode.rawValue;
debugPrint('Barcode found! $code');
}),
QRScannerOverlay(overlayColour: Colors.black.withOpacity(0.5)),
],
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment