-
Notifications
You must be signed in to change notification settings - Fork 607
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
Support printing #15
Comments
If by "incorporated" you mean built into the Flutter engine itself, that's something the Flutter team would need to decide to do. From the perspective of this project, it would be a plug-in. Thanks for filing the issue - it will be interesting to see how many folks want this functionality. |
yes that is what i means by "incorporated". Lets call it built in. |
As I understand it flutter is based on Skia. Skia is the rendering engine. Skia is used in Google chrome to render your web page. Skia has a library inside called pdfium that is able to output PDF ( and XPS for windows printers ). So why does flutter do the same ? I would really appreciate if the flutter team looked at this. Printing is a really needed aspect for me. |
This is not correct; pdfium is not part of Skia.
pdfium is a PDF viewer, which is largely orthogonal to printing (Chromium's ability to print predates pdfium).
If you want printing functionality within Flutter itself, you should file a feature request with Flutter. As the project readme says, this project is not part of Flutter. As Kris noted above if implemented within this project (which is what this bug tracks) it would be as a plugin. |
Ok i raised the Issue in the main Flutter repo. Thanks. |
Closing for cleanup. |
Woops! Misunderstood what this was about. Reopening. |
As the desktop effort has evolved and the focus is on moving things out of FDE, there's more clarity on what plugins would be implemented here. Specifically, unless something is either
it should be developed somewhere other than this repository. That gives every plugin here a clear path for being moved out of the FDE repository later. Since printing doesn't fall into either category, I'm going to close this. It seems like a great candidate for someone to develop as a community plugin though. |
how can we do usb printing in flutter desktop |
Is there any update about direct printing in windows desktop? |
Printing is not on our current roadmap for desktop. There all packages on pub.dev for creating PDF files that you may find useful instead. |
Wondering if the team think printing should be a plug-in or incorporated ?
At the moment I use golang code to print stuff on desktops because it's easy to do cross platform.
On flutter mobile I use sharing.
The text was updated successfully, but these errors were encountered: