We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16ac5a4 commit 857fcd0Copy full SHA for 857fcd0
programming/flutter/user-guide.md
@@ -139,10 +139,12 @@ class _MyHomePageState extends State<MyHomePage> {
139
} else {
140
// EnumScanningMode.multiple
141
_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")}";
+ "Barcodes count: ${barcodeScanResult.barcodes!.length}\n\n" +
+ barcodeScanResult.barcodes!
+ .map((barcode) {
+ return "Format: ${barcode!.formatString}\nText: ${barcode.text}";
146
+ })
147
+ .join("\n\n");
148
}
149
150
});
0 commit comments