Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
mobile_scanner
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Julian Steenbakker
2022-11-09 15:17:02 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ad8f15e5fcd1d087df5d504da425ece7a5cc7f3c
ad8f15e5
1 parent
a841d45f
bug: add default text
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
example/lib/barcode_list_scanner_controller.dart
example/lib/barcode_list_scanner_controller.dart
View file @
ad8f15e
...
...
@@ -99,7 +99,7 @@ class _BarcodeListScannerWithControllerState
height:
50
,
child:
FittedBox
(
child:
Text
(
'
${barcodeCapture?.barcodes.map((e) => e.rawValue)}
'
,
'
${barcodeCapture?.barcodes.map((e) => e.rawValue)
?? 'Scan something!'
}
'
,
overflow:
TextOverflow
.
fade
,
style:
Theme
.
of
(
context
)
.
textTheme
...
...
Please
register
or
login
to post a comment