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-03-11 15:03:34 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
2dde3cc2da600f0611ba95f8c100e277509f8d38
2dde3cc2
1 parent
08c0b8d6
bug: fixed pop() not working
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
6 deletions
example/lib/barcode_scanner_controller.dart
example/lib/barcode_scanner_without_controller.dart
example/lib/barcode_scanner_controller.dart
View file @
2dde3cc
...
...
@@ -25,8 +25,7 @@ class _BarcodeScannerWithControllerState
@override
Widget
build
(
BuildContext
context
)
{
return
MaterialApp
(
home:
Scaffold
(
return
Scaffold
(
backgroundColor:
Colors
.
black
,
body:
Builder
(
builder:
(
context
)
{
return
Stack
(
...
...
@@ -150,7 +149,6 @@ class _BarcodeScannerWithControllerState
],
);
}),
),
);
}
}
...
...
example/lib/barcode_scanner_without_controller.dart
View file @
2dde3cc
...
...
@@ -16,8 +16,7 @@ class _BarcodeScannerWithoutControllerState
@override
Widget
build
(
BuildContext
context
)
{
return
MaterialApp
(
home:
Scaffold
(
return
Scaffold
(
backgroundColor:
Colors
.
black
,
body:
Builder
(
builder:
(
context
)
{
return
Stack
(
...
...
@@ -64,7 +63,6 @@ class _BarcodeScannerWithoutControllerState
],
);
}),
),
);
}
}
...
...
Please
register
or
login
to post a comment