Removed unused imports and moved tour bloc to delivery to be shared by overview and detailed view

This commit is contained in:
Dennis Nemec
2026-01-09 12:24:31 +01:00
parent ecf8745762
commit 1d6c62a392
43 changed files with 53 additions and 75 deletions

View File

@ -6,9 +6,9 @@ class BarcodeScannerWidget extends StatefulWidget {
final Function(String) onBarcodeDetected;
const BarcodeScannerWidget({
Key? key,
super.key,
required this.onBarcodeDetected,
}) : super(key: key);
});
@override
State<BarcodeScannerWidget> createState() => _BarcodeScannerWidgetState();