Flutter POS Printer - A library to discover printers, and send printer commands

Overview

Flutter POS Printer

A library to discover printers, and send printer commands.

Support ESC/POS, TSPL Commands

Example

Print ESC/POS

String printerIP = '192.168.1.22';
Future printLabel(String host, Uint8List bytes) async {
  TcpPrinterConnector connector = TcpPrinterConnector(printerIP);
  TsplPrinter printer = EscPosPrinter(
    connector,
    width: 80,
  );
  await printer.image(bytes);
  printer.beep();
}

Print TSPL (Label)

String printerIP = '192.168.1.23';
Future printLabel(String host, Uint8List bytes) async {
  TcpPrinterConnector connector = TcpPrinterConnector(printerIP);
  TsplPrinter printer = TsplPrinter(
    connector,
    dpi: "200",
    sizeHeight: "25",
    sizeWidth: "40",
  );
  await printer.image(bytes);
  printer.beep();
}

Forked from

You might also like...

Arissendpushntfctns - Send Push notifications with Flutter and Firebase messaging II

Arissendpushntfctns - Send Push notifications with Flutter and Firebase messaging II

Push notifications with Firebase messaging II Send push notifications on Android

Feb 11, 2022

Home app - A dynamic flutter app which can be used to generate alerts, set alarms and send sms or call someone

Home app - A dynamic flutter app which can be used to generate alerts, set alarms and send sms or call someone

first_app A dynamic flutter app which can be used to generate alerts, set alarms

Apr 9, 2022

Messenger is an instant messaging app & by using this you can send message to your friend and family virtually

⚡️ Flash Chat ⚡️ Our Goal 🍁 The objective of this project is to learn how to incorporate Firebase into our Flutter apps. We'll be using Firebase Clou

Dec 3, 2022

Messenger is an instant messaging app & by using this you can send message to your friend and family virtually

⚡️ Flash Chat ⚡️ Our Goal 🍁 The objective of this project is to learn how to incorporate Firebase into our Flutter apps. We'll be using Firebase Clou

Jun 19, 2022

Allows send emails from flutter using native platform functionality.

flutter_email_sender Allows send emails from flutter using native platform functionality. In android it opens default mail app via intent. In iOS MFMa

Jan 3, 2023

Send notification to flutter app using firebase messaging

Welcome Push Notification with Flutter & Firebase ⚠️ ⚠️ there is no google-services.json file attached in this project because of security issues, you

Aug 28, 2022

Flutter book library - Book Library Application with Flutter and Google Book API

Book Library Application Flutter iOS, Android and Web with Google Book API Demo

Jan 25, 2022

Flutter Control is complex library to maintain App and State management. Library merges multiple functionality under one hood. This approach helps to tidily bound separated logic into complex solution.

Flutter Control is complex library to maintain App and State management. Library merges multiple functionality under one hood. This approach helps to tidily bound separated logic into complex solution.

Flutter Control is complex library to maintain App and State management. Library merges multiple functionality under one hood. This approach helps to

Feb 23, 2022

This library provides the easiest and powerful Dart/Flutter library for Mastodon API 🎯

This library provides the easiest and powerful Dart/Flutter library for Mastodon API 🎯

The Easiest and Powerful Dart/Flutter Library for Mastodon API 🎯 1. Guide 🌎 1.1. Features 💎 1.2. Getting Started ⚡ 1.2.1. Install Library 1.2.2. Im

Jul 27, 2023
Owner
Nguyễn Đức Hiếu
Nguyễn Đức Hiếu
Flutter pos - A mobile POS written in Flutter, suitable for small cafe/restaurant, fully offline

Simple-POS A mobile POS written in Flutter, suitable for small cafe/restaurant,

Muhammed Basil E 7 Nov 2, 2022
POS plugging to connect with each type of pos device.

flutter_pos_printer A new flutter plugin project. Getting Started This project is a starting point for a Flutter plug-in package, a specialized packag

Harshit sharma 3 Aug 25, 2022
Send-a-msg - Send message to WhatsApp without saving number

Send A Message Send Message to Whatsapp without saving number ToDo add logging s

Sujal 3 Apr 3, 2022
Flutter project to find and discover events with Clean Architecture and Bloc from SeatGeek API.

Flutter project to find and discover events with Clean Architecture and Bloc from SeatGeek API.

Abel Dagnew 3 Dec 6, 2022
A Flutter library allows to print receipts using a Bluetooth printer

esc_pos_bluetooth The library allows to print receipts using a Bluetooth printer. For WiFi/Ethernet printers, use esc_pos_printer library. TODO (PRs a

null 3 Dec 20, 2021
Turtle graphics for Flutter. It simply uses a custom painter to draw graphics by a series of Logo-like commands.

flutter_turtle flutter_turtle is a simple implementation of turtle graphics for Flutter. It simply uses a custom painter to draw graphics by a series

Weizhong Yang a.k.a zonble 46 Dec 16, 2022
A demo version of POS project.

pos_simplified A demo version of POS project. Getting Started This project is a starting point for a Flutter application. A few resources to get you s

Mahdi Sarhangi 1 Dec 28, 2021
Socket library for creating real-time multiplayer games. Based on TCP, with the ability to send messages over UDP (planned).

Game socket The library was published in early access and is not stable, as it is being developed in parallel with other solutions. English is not a n

Stanislav 10 Aug 10, 2022
This project uses transactions in Firebase(FirebaseAuth and FireStore) to send and receive virtual money across accounts

FinTech (WIP) This project uses transactions in Firebase(FirebaseAuth and FireStore) to send and receive virtual money across accounts. On account cre

Godson 4 Nov 15, 2022
A Flutter plugin to send and receive MIDI

flutter_midi_command A Flutter plugin for sending and receiving MIDI messages between Flutter and physical and virtual MIDI devices. Wraps CoreMIDI/an

null 65 Oct 26, 2022