ChafikHadjAbdouRazack / mobiwire3-null_safety

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mobiprint3

This is a simple unofficial plugin to enable basic printing functionality on the mobiwire mobiprint3 device

Feel free to make contributions to the package.

Getting Started

In your files

import 'package:mobiprint3/mobiprint3.dart';

The responses returned are in the format Map<String,dynamic>

sample response

{ "success" : true, "message" : "1" }

To print basic text

print(String txt);

e.g

Map<String,dynamic> printResponse = await Mobiprint3.print('Hello From flutter\n\n');

To print an image/bitmap

custom(String text, Integer size);

e.g

Map<String,dynamic> printResponse = await Mobiprint3.custom('Headers',2);

size 1 to 3

To print an image/bitmap

Not Yet functional

printImage(String image_src )

e.g

not functioning -- pending implementation

To check if paper is loaded (or if is in printer mode)

checkPaper(); e.g

Map<String,dynamic> printResponse = await Mobiprint3.checkPaper();

To print a space

space(); e.g

Map<String,dynamic> printResponse = await Mobiprint3.space();

End the printing session [print two terminating lines]

end(); e.g

Map<String,dynamic> printResponse = await Mobiprint3.end();

mobiwire3-null_safety

About

License:Other


Languages

Language:Java 62.0%Language:Dart 28.5%Language:Objective-C 5.5%Language:Ruby 2.3%Language:Shell 1.8%