在flutter中使用pdf包制作的pdf中添加按钮

发布于 2025-01-18 13:10:44 字数 216 浏览 0 评论 0原文

我正在使用 pdf 包装中的包装中用于从应用程序生成PDF。我需要在PDF中添加可点击的东西(超链接,按钮),但该软件包没有为此目的提供任何小部件。同样,基本的弹道小部件不能用于生成PDF文件(受软件包的限制)。有什么方法可以解决吗?

I am using the 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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

短叹 2025-01-25 13:10:44

现在问题已经解决了,pdf包提供了UrlLink,用于在页面上点击时打开链接。

这是该内容的简短文档。

我是这样做的-

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

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)))
留蓝 2025-01-25 13:10:44

使用stack小部件将任何小部件都放在PDF上方?

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文