Skip to content

Commit 4e68ad2

Browse files
committed
Capitalization fix.
1 parent dc7f8e6 commit 4e68ad2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example/lib/widgets.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class ScanResultTile extends StatelessWidget {
7373
}
7474
List<String> res = [];
7575
data.forEach((id, bytes) {
76-
res.add('$id: ${getNiceHexArray(bytes)}');
76+
res.add('${id.toUpperCase()}: ${getNiceHexArray(bytes)}');
7777
});
7878
return res.join(', ');
7979
}

0 commit comments

Comments
 (0)