pos_printer_helper 1.1.3 copy "pos_printer_helper: ^1.1.3" to clipboard
pos_printer_helper: ^1.1.3 copied to clipboard

PlatformAndroid

A Flutter package that provides a unified interface for thermal printer operations across multiple POS device manufacturers.

POS Printer Package #

pub package

A Flutter package that provides a unified interface for thermal printer operations across multiple POS device manufacturers including Telpo, Senraise, and Sunmi.

Features #

  • Compatibility with multiple POS device manufacturers
  • Text printing with customizable formatting (bold, italic, size)
  • Table printing with customizable column widths and alignments
  • Image printing support
  • LCD display support for compatible devices (e.g. Sunmi D3 Mini)
  • Cash drawer control
  • Paper cutting
  • ESC/POS command execution
  • Printer status monitoring
  • Automatic manufacturer detection

Supported Devices #

  • Telpo
  • Senraise
  • Sunmi

Tested on #

  • Telpo(M8)
  • Senraise(H10s)
  • Sunmi(V2,V3 Mix)

Installation #

flutter pub add pos_printer_helper
copied to clipboard

Getting Started #

First, import the package:

import 'package:pos_printer/pos_printer.dart';
copied to clipboard

Usage #

Basic Printing #

// Print text
PosPrinterPlugin.printText("Hello World!", 27.0, true, false); // bold text
PosPrinterPlugin.printText("Normal text", 27.0, false, false); // normal text

// Feed paper
PosPrinterPlugin.feedPaper(3);

// Start printing session (required for Telpo printers)
PosPrinterPlugin.start();

// Release printer
PosPrinterPlugin.release();
copied to clipboard

Table Printing #

// Print a table row
PosPrinterPlugin.printTable(
  ["Item", "Qty", "Price"],  // texts
  [2, 1, 1],                 // column widths
  [0, 1, 2],                 // alignments (0: left, 1: center, 2: right)
  27                         // font size
);
copied to clipboard

Image Printing #

// Print a bitmap image
final Uint8List imageBytes = await loadImage();
PosPrinterPlugin.printBitmap(imageBytes);
copied to clipboard

LCD Display (Sunmi D3 Mini 58mm) #

// Display text on 7-segment display
PosPrinterPlugin.sendTextToLcdDigital("12.50");

### LCD Display (Sunmi D3 Mini 80/ Telpo M8)

// Display image on LCD
final Uint8List lcdImage = await loadLcdImage();
PosPrinterPlugin.sendImageLcdDigital(lcdImage);
copied to clipboard

Printer Control #

// Set alignment
PosPrinterPlugin.setAlign(Alignments.center);

// Open cash drawer
PosPrinterPlugin.openDrawer();

// Cut paper
PosPrinterPlugin.cutPaper();

// Get printer status
Future<PrinterStatus> status = PosPrinterPlugin.getPrinterStatus();

// Get printer size
Future<PrinterSize> size = PosPrinterPlugin.getPrinterSize();

// Get device manufacturer
Future<DeviceManufacture> manufacturer = PosPrinterPlugin.getDeviceManufacture();
copied to clipboard

Cleanup #

Make sure to properly release resources when done:

// Release printer after printing
PosPrinterPlugin.release();

// De-initialize printer when app is closing
PosPrinterPlugin.deInitPrinter();
copied to clipboard

Contributing #

Contributions are welcome! Please feel free to submit a Pull Request.

License #

This project is licensed under the MIT License - see the LICENSE file for details.

11
likes
150
points
73
downloads

Publisher

verified publishercashier-iq.com

Weekly Downloads

2024.09.06 - 2025.03.21

A Flutter package that provides a unified interface for thermal printer operations across multiple POS device manufacturers.

Repository (GitHub)
View/report issues

Topics

#printing #thermal

Documentation

API reference

License

MIT (license)

Dependencies

flutter, pigeon, plugin_platform_interface

More

Packages that depend on pos_printer_helper