react-native-bluetooth-escpos-printer
react-native-bluetooth-escpos-printer copied to clipboard
How to add bold to the printText method? help!
you can use,
await BluetoothEscposPrinter.setBlob(1);
before the text you want to print. As an ex:
await BluetoothEscposPrinter.setBlob(1); await BluetoothEscposPrinter.printText( 'Hello World\n\r', {}, );
How about printColumn()
with left column is bold but right is not bold?
@champikamendis