Is anyone using a workaround to print files in PowerApps? Here is my current solution:
For those unfamiliar with Zebra thermal printers, there is a language called ZPL that formats the labels which you can send directly to the printer.
I have a Flow that creates a text file in OneDrive with the ZPL using some string injections from PowerApps,
That OneDrive file is saved in a specific directory.
I then have a C# application that watches that OneDrive directory waiting for new files.
The file is dropped there, then the application picks it up, reads the .txt file, and sends the string to the printer from the host computer.
This is nowhere near ideal, but it does work. Anyone have better workarounds?