flutter_zebra_plugin library

Flutter plugin for Zebra ZPL label printers.

Provides WiFi-based connection management, label printing (text, barcodes, images, PDFs), raw ZPL command delivery, and real-time connection monitoring.

Android only.

Quick start

import 'package:zpl_plugin_package/flutter_zebra_plugin.dart';

final zebra = FlutterZebraIntegration();

// Connect
await zebra.connectToPrinter('192.168.1.100', '9100');

// Print
await zebra.printText('Hello, Zebra!');

// Clean up when done
zebra.dispose();

Classes

FlutterZebraIntegration
High-level API for communicating with a Zebra ZPL label printer over WiFi.