Replies: 1 comment
-
Yes, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Background
My team is writing a Flutter app that deploys to mobile devices and the web and that needs to generate a PDF from a Jinja2 template. The current implementation uses an external Python REST API that converts a Jinja2 template to HTML and then passes that on to a PDF generator. The resulting PDF is the return from the REST API request.
We'd like to convert the API into an embedded part of the app for the following reasons:
Question
It's not clear from the documentation in Github or at pub.dev whether we can embed this package in a web based application. The confusion stems from the pub.dev site. For 0.3.x the supported SDKs are both Dart and Flutter, but Web is omitted from the platforms list.
0.4.x has the same SDK list, but now has Web added as a platform, but the description still describes this as a "server side" solution.
So, really the bottom line is can we embed the 0.4.x library into a fully self contained app that can be deployed to mobile devices, operating systems, and, most importantly for us, the web?
Beta Was this translation helpful? Give feedback.
All reactions