Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
s4k4tech committed Mar 11, 2024
1 parent c3989c4 commit 646e3ca
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 646e3ca

Please sign in to comment.