Committed by
GitHub
Fix forward subject, body and emails to pdf share action (#1651)
Showing
1 changed file
with
3 additions
and
0 deletions
@@ -357,6 +357,9 @@ class PdfPreviewState extends State<PdfPreview> { | @@ -357,6 +357,9 @@ class PdfPreviewState extends State<PdfPreview> { | ||
357 | filename: widget.pdfFileName, | 357 | filename: widget.pdfFileName, |
358 | onShared: | 358 | onShared: |
359 | widget.onPrinted == null ? null : () => widget.onPrinted!(context), | 359 | widget.onPrinted == null ? null : () => widget.onPrinted!(context), |
360 | + subject: widget.shareActionExtraSubject, | ||
361 | + emails: widget.shareActionExtraEmails, | ||
362 | + body: widget.shareActionExtraBody, | ||
360 | )); | 363 | )); |
361 | } | 364 | } |
362 | 365 |
-
Please register or login to post a comment