Alfred Schilken
Alfred Schilken
Currently the CapacityIndicator only works with the default value of 10 for splits. I changed CapacityIndicator to work with other values and IndicatorsPage now uses splits:20. ``` macos_ui git:(dev) sh...
With this initialization of MobileScannerController: ``` @override void initState() { super.initState(); _detectedSerial = ''; _cameraController = MobileScannerController( formats: [ BarcodeFormat.all, ], detectionSpeed: DetectionSpeed.noDuplicates, detectionTimeoutMs: 1000, returnImage: false, autoStart: false, );...