import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:qr_code_scanner/qr_code_scanner.dart'; void main() => runApp(MaterialApp(home: QRViewExample())); const flash_on = "FLASH ON"; const flash_off = "FLASH OFF"; const front_camera = "FRONT CAMERA"; const back_camera = "BACK CAMERA"; class QRViewExample extends StatefulWidget { const QRViewExample({ Key key, }) : super(key: key); @override State createState() => _QRViewExampleState(); } class _QRViewExampleState extends State { final GlobalKey qrKey = GlobalKey(debugLabel: 'QR'); var qrText = ""; var flashState = flash_on; var cameraState = front_camera; QRViewController controller; @override Widget build(BuildContext context) { return Scaffold( body: Column( children: [ Expanded( child: QRView( key: qrKey, onQRViewCreated: _onQRViewCreated, ), flex: 4, ), Expanded( child: Column( children: [ Text("This is the result of scan: $qrText"), Row( mainAxisAlignment: MainAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.center, children: [ Container( margin: EdgeInsets.all(8.0), child: RaisedButton( onPressed: () { if (controller != null) { controller.flipFlash(); if (_isFlashOn(flashState)) setState(() { flashState = flash_off; }); else setState(() { flashState = flash_on; }); } }, child: Text(flashState, style: TextStyle(fontSize: 20)), ), ), Container( margin: EdgeInsets.all(8.0), child: RaisedButton( onPressed: () { if (controller != null) { controller.flipCamera(); if (_isBackCamera(cameraState)) setState(() { cameraState = front_camera; }); else setState(() { cameraState = back_camera; }); } }, child: Text(cameraState, style: TextStyle(fontSize: 20)), ), ) ], ) ], ), flex: 1, ) ], ), ); } _isFlashOn(String current) { return flash_on == current; } _isBackCamera(String current) { return back_camera == current; } void _onQRViewCreated(QRViewController controller) { final channel = controller.channel; controller.init(qrKey); this.controller = controller; channel.setMethodCallHandler((MethodCall call) async { switch (call.method) { case "onRecognizeQR": dynamic arguments = call.arguments; setState(() { qrText = arguments.toString(); }); } }); } }