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-31 11:45:12 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ad770f17b6f449e923f98443ddb22092f29ea27d
ad770f17
1 parent
03a08b56
style: apply flutter lint
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
lib/mobile_scanner_web_plugin.dart
lib/mobile_scanner_web_plugin.dart
View file @
ad770f1
...
...
@@ -81,8 +81,9 @@ class MobileScannerWebPlugin {
vidDiv
.
children
=
[
video
];
var
cameraFacing
=
CameraFacing
.
front
;
if
(
arguments
.
containsKey
(
'facing'
))
if
(
arguments
.
containsKey
(
'facing'
))
{
cameraFacing
=
CameraFacing
.
values
[
arguments
[
'facing'
]];
}
// See https://github.com/flutter/flutter/issues/41563
// ignore: UNDEFINED_PREFIXED_NAME
...
...
Please
register
or
login
to post a comment