blue_print_pos icon indicating copy to clipboard operation
blue_print_pos copied to clipboard

Printing out of paper size

Open Denis3107 opened this issue 2 years ago • 3 comments

I use mm80 paper size, but text printing is not correct, everything works fine for printing Qr code. photo_2022-04-26_12-13-37

Denis3107 avatar Apr 26 '22 09:04 Denis3107

I have the same problem

lonelyWalkor avatar Apr 29 '22 03:04 lonelyWalkor

I also encountered the same problem, this problem only appears on the Android platform.

lonelyWalkor avatar Apr 29 '22 08:04 lonelyWalkor

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; or paperSize = Platform.isAndroid ? PaperSize.mm80 : paperSize;

  • Reference: Screenshot 2022-12-25 at 9 20 38 AM

ankush-ppie avatar Dec 25 '22 03:12 ankush-ppie