Skip to content

Commit 857fcd0

Browse files
update to internal commit 1eed1c98
1 parent 16ac5a4 commit 857fcd0

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

programming/flutter/user-guide.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -139,10 +139,12 @@ class _MyHomePageState extends State<MyHomePage> {
139139
} else {
140140
// EnumScanningMode.multiple
141141
_displayString =
142-
"Barcodes count: ${barcodeScanResult.barcodes!.length}\n\n"
143-
"${barcodeScanResult.barcodes!.map((barcode) {
144-
return "Format: ${barcode!.formatString}\nText: ${barcode.text}";
145-
}).join("\n\n")}";
142+
"Barcodes count: ${barcodeScanResult.barcodes!.length}\n\n" +
143+
barcodeScanResult.barcodes!
144+
.map((barcode) {
145+
return "Format: ${barcode!.formatString}\nText: ${barcode.text}";
146+
})
147+
.join("\n\n");
146148
}
147149
}
148150
});

0 commit comments

Comments
 (0)