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
Navaron Bracke
2023-11-09 10:36:35 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b38d36a935e0e3832c7b457d70a8a2b1ae949dc6
b38d36a9
1 parent
fc87d1a9
remove builder from the zoom slider example
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
5 deletions
example/lib/barcode_scanner_zoom.dart
example/lib/barcode_scanner_zoom.dart
View file @
b38d36a
...
...
@@ -91,9 +91,7 @@ class _BarcodeScannerWithZoomState extends State<BarcodeScannerWithZoom>
return
Scaffold
(
appBar:
AppBar
(
title:
const
Text
(
'With zoom slider'
)),
backgroundColor:
Colors
.
black
,
body:
Builder
(
builder:
(
context
)
{
return
Stack
(
body:
Stack
(
children:
[
MobileScanner
(
controller:
controller
,
...
...
@@ -142,8 +140,6 @@ class _BarcodeScannerWithZoomState extends State<BarcodeScannerWithZoom>
),
),
],
);
},
),
);
}
...
...
Please
register
or
login
to post a comment