mjafartp / flutter_esc_pos_utils

Flutter package of esc/pos utils
GNU General Public License v3.0
26 stars 49 forks source link

Cannot able to Print with Space between two row #35

Open pradeep14598 opened 9 months ago

pradeep14598 commented 9 months ago

All text aligned to right side There is no space between each row

Using HOIN 80mm POS Printer

PosStyles rightStyles=PosStyles(align: PosAlign.right, fontType: PosFontType.fontA); bytes += generator.row( [ PosColumn( text: 'Qty', width: 3,), PosColumn( text: 'Item', width: 3,), PosColumn( text: 'Price', width: 3,styles:rightStyles ), PosColumn( text: 'Total', width: 3,styles:rightStyles), ], );

image