Skip to content

Commit

Permalink
Merge pull request #981 from sakatech-jp/fix_typo_scanned_barcode_label
Browse files Browse the repository at this point in the history
fix: fix typo
  • Loading branch information
navaronbracke authored Mar 14, 2024
2 parents c3989c4 + 646e3ca commit 663e43a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/lib/scanned_barcode_label.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ class ScannedBarcodeLabel extends StatelessWidget {
Widget build(BuildContext context) {
return StreamBuilder(
stream: barcodes,
builder: (context, snaphot) {
final scannedBarcodes = snaphot.data?.barcodes ?? [];
builder: (context, snapshot) {
final scannedBarcodes = snapshot.data?.barcodes ?? [];

if (scannedBarcodes.isEmpty) {
return const Text(
Expand Down

0 comments on commit 663e43a

Please sign in to comment.