blue_print_pos
blue_print_pos copied to clipboard
Printing out of paper size
I use mm80 paper size, but text printing is not correct, everything works fine for printing Qr code.
I have the same problem
I also encountered the same problem, this problem only appears on the Android platform.
Hi @Denis3107 @lonelyWalkor
I also faced the same issue & fixed with a single line patch. Use this library or add code in your forked package.
In file lib/blue_print_pos.dart
-
Add patch code:
paperSize = Platform.isAndroid ? PaperSize.mm72 : PaperSize.mm58;
orpaperSize = Platform.isAndroid ? PaperSize.mm80 : paperSize;
-
Reference: