diff --git a/lib/scanner_screen.dart b/lib/scanner_screen.dart index 1105cee..a1c41a0 100644 --- a/lib/scanner_screen.dart +++ b/lib/scanner_screen.dart @@ -60,7 +60,9 @@ class _ScannerScreenState extends State super.initState(); WidgetsBinding.instance.addObserver(this); _activeCollectionId = widget.activeCollectionId; - _autoScanEnabled = widget.onDetected != null; + if (widget.onDetected != null) { + _statusText = 'Auto scan paused'; + } _textRecognizer = TextRecognizer(); _initCamera(); }