Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
dart_pdf
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
David PHAM-VAN
2020-03-12 09:11:00 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
6315de869723aa425d76ee4ac1d386420a7c15e1
6315de86
1 parent
4455adb2
Fix sharePdf exception
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
printing/lib/src/method_channel.dart
printing/lib/src/method_channel.dart
View file @
6315de8
...
...
@@ -217,7 +217,7 @@ class MethodChannelPrinting extends PrintingPlatform {
'w'
:
bounds
.
width
,
'h'
:
bounds
.
height
,
};
return
await
_channel
.
invokeMethod
(
'sharePdf'
,
params
)
;
return
await
_channel
.
invokeMethod
<
int
>(
'sharePdf'
,
params
)
!=
0
;
}
@override
...
...
Please
register
or
login
to post a comment