Open Dileep2896 opened 2 years ago
You have to resume your camera before listening for scanned data.
`void _onQRViewCreated(QRViewController controller) { this.controller = controller;
controller.resumeCamera(); log("Hello"); controller.scannedDataStream.listen((scanData) { log(scanData.code.toString()); HapticFeedback.vibrate(); setState(() { result = scanData; }); }); this.controller!.pauseCamera(); this.controller!.resumeCamera(); }`
The message updateAcquireFence: Did not find frame. isn't something to be worried about. The Android team told us that this is likely a bug in HWUI and doesn't signal an error.
Describe the bug After upgrading the QR code is not giving any scan data, Before that I was facing the black screen isue which I solved by using the below method.
Now it's not returning the scanned data!!!!!!
Flutter information Lastest 3 flutter version
Device (please complete the following information):
Screenshots If applicable, add screenshots to help explain your problem.
Additional context Add any other context about the problem here.