Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to block/unable save to pdf #1634

Open
asamarsal opened this issue Mar 25, 2024 · 0 comments
Open

How to block/unable save to pdf #1634

asamarsal opened this issue Mar 25, 2024 · 0 comments
Labels
needs triage support Asking for help writing an application

Comments

@asamarsal
Copy link

asamarsal commented Mar 25, 2024

I want to make save as pdf disapear, how to do that?

pos

This is my code :

Future<void> printDoc() async {
    try {

      final doc = pw.Document();
      final printableData = await buildPrintableData(); // Await here

      doc.addPage(
        pw.Page(
          pageFormat: PdfPageFormat(
            500.0,
            2000.0,
            marginTop: 10.0,
            marginBottom: 10.0,
            marginLeft: 10.0,
            marginRight: 10.0,
          ),
          build: (pw.Context context) {
            return printableData;
          },
        ),
      );

      await Printing.layoutPdf(onLayout: (PdfPageFormat format) async => doc.save());
    } catch (e) {
      print("Error loading image: $e");
    }
  }
@asamarsal asamarsal added needs triage support Asking for help writing an application labels Mar 25, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
needs triage support Asking for help writing an application
Projects
None yet
Development

No branches or pull requests

1 participant