mobiprint3 1.0.2 copy "mobiprint3: ^1.0.2" to clipboard
mobiprint3: ^1.0.2 copied to clipboard

A flutter printer plugin for use with the Android 4.2.2 Mobiwire Mobiprint POS device which comes with a custom SDK.

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();
8
likes
20
pub points
23%
popularity

Publisher

verified publisherbixbyte.io

A flutter printer plugin for use with the Android 4.2.2 Mobiwire Mobiprint POS device which comes with a custom SDK.

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on mobiprint3