We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scan window does not stay in the middle of the screen.
import 'package:ai_barcode_scanner/ai_barcode_scanner.dart'; import 'package:auto_route/auto_route.dart'; import 'package:flutter/material.dart'; @RoutePage() class BarcodeScanView extends StatefulWidget { const BarcodeScanView({Key? key}) : super(key: key); @override State<BarcodeScanView> createState() => _BarcodeScanViewState(); } class _BarcodeScanViewState extends State<BarcodeScanView> { @override Widget build(BuildContext context) { return AiBarcodeScanner( onDetect: (BarcodeCapture capture) async{ final String? value = capture.barcodes.first.rawValue; }, onDispose: () { debugPrint("Barcode scanner disposed!"); }, controller: MobileScannerController( detectionSpeed: DetectionSpeed.noDuplicates, formats: [BarcodeFormat.all], ) ); } }
Phone Iphone SE
The text was updated successfully, but these errors were encountered:
Hi @StatTark
I need to look into what happens here. For now, you can use the cutOutBottomOffset parameter to align that.
Sorry, something went wrong.
Thank you for the suggestion, @rvndsngwn! I'll try using the cutOutBottomOffset parameter to align it. Much appreciated!
No branches or pull requests
Scan window does not stay in the middle of the screen.
Phone Iphone SE
The text was updated successfully, but these errors were encountered: