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
2024-09-05 12:59:10 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3450814a1f04c5387ad371400ea4e4ceb50d7653
3450814a
1 parent
1d1b0f98
fix type error
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
lib/src/method_channel/mobile_scanner_method_channel.dart
lib/src/method_channel/mobile_scanner_method_channel.dart
View file @
3450814
...
...
@@ -56,8 +56,8 @@ class MethodChannelMobileScanner extends MobileScannerPlatform {
if
(
defaultTargetPlatform
==
TargetPlatform
.
android
||
defaultTargetPlatform
==
TargetPlatform
.
iOS
||
defaultTargetPlatform
==
TargetPlatform
.
macOS
)
{
final
Map
<
String
,
Object
?>?
imageData
=
event
[
'image'
]
as
Map
<
String
,
Object
?>?;
final
Map
<
Object
?,
Object
?>?
imageData
=
event
[
'image'
]
as
Map
<
Object
?,
Object
?>?;
final
Uint8List
?
image
=
imageData
?[
'bytes'
]
as
Uint8List
?;
final
double
?
width
=
imageData
?[
'width'
]
as
double
?;
final
double
?
height
=
imageData
?[
'height'
]
as
double
?;
...
...
@@ -141,8 +141,8 @@ class MethodChannelMobileScanner extends MobileScannerPlatform {
@override
Future
<
BarcodeCapture
?>
analyzeImage
(
String
path
)
async
{
final
Map
<
String
,
Object
?>?
result
=
await
methodChannel
.
invokeMapMethod
<
String
,
Object
?>(
final
Map
<
Object
?,
Object
?>?
result
=
await
methodChannel
.
invokeMapMethod
<
Object
?,
Object
?>(
'analyzeImage'
,
path
,
);
...
...
Please
register
or
login
to post a comment