# qr_code_scanner **Repository Path**: hsq168/qr_code_scanner ## Basic Information - **Project Name**: qr_code_scanner - **Description**: QR Code Scanner for Flutter - **Primary Language**: Dart - **License**: BSD-2-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-03-27 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # QR Code Scanner [![Build Status](https://dev.azure.com/juliuscanute/spring/_apis/build/status/juliuscanute.qr_code_scanner?branchName=master)](https://dev.azure.com/juliuscanute/spring/_build/latest?definitionId=7&branchName=master) A QR code scanner that works on both iOS and Android by natively embedding the platform view within Flutter. The integration with Flutter is seamless, much better than jumping into a native Activity or a ViewController to perform the scan. ## Screenshots
Android

iOS

## Get Scanned QR Code When a QR code is recognized, the text identified will be set in 'qrText'. ```dart class _QRViewExampleState extends State { final GlobalKey qrKey = GlobalKey(debugLabel: 'QR'); var qrText = ""; QRViewController controller; @override Widget build(BuildContext context) { return Scaffold( body: Column( children: [ Expanded( flex: 5, child: QRView( key: qrKey, onQRViewCreated: _onQRViewCreated, ), ), Expanded( flex: 1, child: Center( child: Text('Scan result: $qrText'), ), ) ], ), ); } void _onQRViewCreated(QRViewController controller) { this.controller = controller; controller.scannedDataStream.listen((scanData) { setState(() { qrText = scanData; }); }); } @override void dispose() { controller?.dispose(); super.dispose(); } } ``` ## iOS Integration In order to use this plugin, add the following to your Info.plist file: ``` io.flutter.embedded_views_preview ``` ## Flip Camera (Back/Front) The default camera is the back camera. ```dart controller.flipCamera(); ``` ## Flash (Off/On) By default, flash is OFF. ```dart controller.toggleFlash(); ``` ## Resume/Pause Pause camera stream and scanner. ```dart controller.pause(); ``` Resume camera stream and scanner. ```dart controller.resume(); ``` # TODO'S: * iOS Native embedding is written to match what is supported in the framework as of the date of publication of this package. It needs to be improved as the framework support improves. * In future, options will be provided for default states. * Finally, I welcome PR's to make it better :), thanks # Credits * Android: https://github.com/zxing/zxing * iOS: https://github.com/mikebuss/MTBBarcodeScanner * Special Thanks To: LeonDevLifeLog for his contributions towards improving this package.