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())); 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 = ""; @override Widget build(BuildContext context) { return Scaffold( body: Column( children: [ Expanded( child: QRView( key: qrKey, onQRViewCreated: _onQRViewCreated, ), flex: 4, ), Expanded( child: Text("This is the result of scan: $qrText"), flex: 1, ) ], ), ); } void _onQRViewCreated(QRViewController controller) { final channel = controller.channel; controller.init(qrKey); channel.setMethodCallHandler((MethodCall call) async { switch (call.method) { case "onRecognizeQR": dynamic arguments = call.arguments; setState(() { qrText = arguments.toString(); }); } }); } }