drago_usb_printer 0.0.5 copy "drago_usb_printer: ^0.0.5" to clipboard
drago_usb_printer: ^0.0.5 copied to clipboard

This plugin will allow develop send data and work with usb printer on android

drago_usb_printer #

This plugin will allow develop send data and work with usb printer on android

Getting Started #

    flutter pub add drago_usb_printer

Example of Usage #

_getDevicelist() async {
    List<Map<String, dynamic>> results = [];
    results = await DragoUsbPrinter.getUSBDeviceList();

    print(" length: ${results.length}");
    setState(() {
      devices = results;
    });
}

_connect(int vendorId, int productId) async {
    bool returned;
    try {
      returned = await DragoUsbPrinter.connect(vendorId, productId);
    } on PlatformException {
      //response = 'Failed to get platform version.';
    }
    if (returned) {
      setState(() {
        connected = true;
      });
    }
}

_print() async {
    try {
      var data = Uint8List.fromList(
          utf8.encode(" Hello world Testing ESC POS printer..."));
      await DragoUsbPrinter.write(data);
      // await DragoUsbPrinter.printRawData("text");
      // await DragoUsbPrinter.printText("Testing ESC POS printer...");
    } on PlatformException {
      //response = 'Failed to get platform version.';
    }
}

0
likes
0
pub points
67%
popularity

Publisher

unverified uploader

This plugin will allow develop send data and work with usb printer on android

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on drago_usb_printer