blue_print_pos 0.0.1 copy "blue_print_pos: ^0.0.1" to clipboard
blue_print_pos: ^0.0.1 copied to clipboard

outdated

Helper to use bluetooth print in Android and iOS

Introduction #

This plugin to help use bluetooth printer in Android/iOS. Support for text, image, add new line or line dashed and QR.

Usage #

Scan bluetooth printer #

_bluePrintPos.scan();

Connect bluetooth printer #

_bluePrintPos.connect(device);

In method .addText(text, {size, style, alignment}) you can modify size, style and alignment

ReceiptSectionText receiptText = ReceiptSectionText();
receiptText.addText('MY STORE', size: ReceiptTextSizeType.medium, style: ReceiptTextStyleType.bold);
receiptText.addLeftRightText('Time', '04/06/21, 10:00');
ByteData bytes = await rootBundle.load('assets/logo.jpg');
await _bluePrintPos.printReceiptImage(bytes.buffer.asUint8List(), width: 120);

Add new line #

receiptText.addSpacer();

Add new line with dash #

receiptText.addSpacer(useDashed: true);

Getting Started #

Android #

Change the minSdkVersion in android/app/build.gradle in 19

android {
  defaultConfig {
     minSdkVersion 19
  }
}

Add permission for Bluetooth and access location in android/app/src/main/AndroidManifest.xml

<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>

iOS #

Add info key in ios/Runner/Info.plist

<key>NSBluetoothAlwaysUsageDescription</key>  
<string>Need BLE permission</string>  
<key>NSBluetoothPeripheralUsageDescription</key>  
<string>Need BLE permission</string>  
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>  
<string>Need Location permission</string>  
<key>NSLocationAlwaysUsageDescription</key>  
<string>Need Location permission</string>  
<key>NSLocationWhenInUseUsageDescription</key>  
<string>Need Location permission</string>

Thanks to #

Reference and dependencies create this plugin