fabiancrx
Committed by GitHub

Fix forward subject, body and emails to pdf share action (#1651)

@@ -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