在flutter中使用pdf包制作的pdf中添加按钮
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
现在问题已经解决了,pdf包提供了UrlLink,用于在页面上点击时打开链接。
这是该内容的简短文档。
我是这样做的-
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-
使用
stack
小部件将任何小部件都放在PDF上方?Use the
Stack
widget to put any widget above the pdf ?