Merge branch '20-todo-fehlerhafte-andere-qr-codes-abfangen' into 'main'
Added try catch with errorhandling Closes #20 See merge request Crondung/hsma_cpd!26main
commit
f5fe8eea5a
|
@ -37,12 +37,28 @@ class MyScannerState extends State<MyScanner> {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void handleError() {
|
||||||
|
setState(() {
|
||||||
|
scanning = false;
|
||||||
|
AwesomeDialog(
|
||||||
|
context: context,
|
||||||
|
dialogType: DialogType.error,
|
||||||
|
title: 'Fehler',
|
||||||
|
desc: 'Der QR-Code war fehlerhaft!',
|
||||||
|
).show();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
void onDetect(capture) {
|
void onDetect(capture) {
|
||||||
final List<Barcode> barcodes = capture.barcodes;
|
try {
|
||||||
for (final barcode in barcodes) {
|
final List<Barcode> barcodes = capture.barcodes;
|
||||||
if (barcode.rawValue != null) {
|
for (final barcode in barcodes) {
|
||||||
return handleSucces(barcode.rawValue);
|
if (barcode.rawValue != null) {
|
||||||
|
return handleSucces(barcode.rawValue);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
} catch (e) {
|
||||||
|
handleError();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue