Home > front end >  Adding button in pdf made using pdf package in flutter
Adding button in pdf made using pdf package in flutter

Time:04-02

I am using pdf package in flutter for generating pdf from the app. I need to add a clickable kind of thing(hyperlink, button) in pdf but the package doesn't provide any widget for that purpose. Also the basic flutter widgets couldn't be used for generating the pdf files(restricted by the package). Is there any way to solve it?

CodePudding user response:

Use the Stack widget to put any widget above the pdf ?

CodePudding user response:

The problem is solved now, the pdf package provides the UrlLink for the purpose of opening a link when tapped on the page.

This is the short documentation for the same.

I did it like this-

pw.UrlLink(destination: imageUrl, child: pw.Text('LINK', style: pw.TextStyle(fontSize: size)))
  • Related