artemis_zebra 0.0.1 copy "artemis_zebra: ^0.0.1" to clipboard
artemis_zebra: ^0.0.1 copied to clipboard

outdated

A new Flutter plugin working with zebra printers

example/lib/main.dart

import 'package:artemis_zebra/artemis_zebra.dart';
import 'package:artemis_zebra/zebra_printer.dart';
import 'package:artemis_zebra/zebra_printer_interface.dart';
import 'package:flutter/material.dart';
import 'dart:async';

import 'package:flutter/services.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  String _platformVersion = 'Unknown';
  final _artemisZebraUtilPlugin = ArtemisZebraUtil();
  late ZebraPrinter printer;
  List<ZebraPrinter> printers = [];

  @override
  void initState() {
    super.initState();
    initPlatformState();
  }

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    String platformVersion;
    // Platform messages may fail, so we use a try/catch PlatformException.
    // We also handle the message potentially returning null.
    try {
      printer = await ArtemisZebraUtil.getPrinterInstance(notifier: (_) => setState(() {
        print("aa");
      }));
    } on PlatformException {
      platformVersion = 'Failed to get platform version.';
    }

    // If the widget was removed from the tree while the asynchronous platform
    // message was in flight, we want to discard the reply rather than calling
    // setState to update our non-existent appearance.
    if (!mounted) return;
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        floatingActionButton: FloatingActionButton(
          onPressed: () async {
            ZebraPrinter p = await ArtemisZebraUtil.getPrinterInstance(label: "BP TEST", notifier: (p) =>setState((){}));
            printers.add(p);
            setState(() {});
            // ArtemisZebraUtil().getPlatformVersion().then((value){
            //   print(value);
            // });
          },
        ),
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Column(
          children: [
            ...printers
                .map((e) => ListTile(
                      onTap: (){
                        e.isPrinterConnected();
                      },
                      onLongPress: (){
                        e.disconnectPrinter();
                      },
                      leading: Icon(
                        Icons.print,
                        color: e.status.color,
                      ),
                      subtitle: Text("${e.instanceID} :${e.status.label}"),
                      // trailing: Text(""),
                      title: Row(
                        children: [
                          TextButton(
                            onPressed: () {
                              print("sda");
                              e.discoverPrinters().then((value){
                                print(value);
                              });
                            },
                            child: const Text("Find"),
                          ),
                          TextButton(
                            onPressed: () {
                              // print(e.foundPrinters.first.address);
                              e.connectToPrinter("192.168.1.8");
                            },
                            child: const Text("Connect"),
                          ),
                          TextButton(
                            onPressed: () {
                              e.printData('''
                ^XA

^FX Top section with logo, name and address.
^CF0,60
^FO50,50^GB100,100,100^FS
^FO75,75^FR^GB100,100,100^FS
^FO93,93^GB40,40,40^FS
^FO220,50^FDIntershipping, Inc.^FS
^CF0,30
^FO220,115^FD1000 Shipping Lane^FS
^FO220,155^FDShelbyville TN 38102^FS
^FO220,195^FDUnited States (USA)^FS
^FO50,250^GB700,3,3^FS

^FX Second section with recipient address and permit information.
^CFA,30
^FO50,300^FDJohn Doe^FS
^FO50,340^FD100 Main Street^FS
^FO50,380^FDSpringfield TN 39021^FS
^FO50,420^FDUnited States (USA)^FS
^CFA,15
^FO600,300^GB150,150,3^FS
^FO638,340^FDPermit^FS
^FO638,390^FD123456^FS
^FO50,500^GB700,3,3^FS

^FX Third section with bar code.
^BY5,2,270
^FO100,550^BC^FD12345678^FS

^FX Fourth section (the two boxes on the bottom).
^FO50,900^GB700,250,3^FS
^FO400,900^GB3,250,3^FS
^CF0,40
^FO100,960^FDCtr. X34B-1^FS
^FO100,1010^FDREF1 F00B47^FS
^FO100,1060^FDREF2 BL4H8^FS
^CF0,190
^FO470,955^FDCA^FS

^XZ
                ''');
                            },
                            child: const Text("Print"),
                          ),
                        ],
                      ),
                    ))
                .toList()
          ],
        ),
      ),
    );
  }
}
1
likes
0
points
32
downloads

Publisher

verified publisherabomis.com

Weekly Downloads

A new Flutter plugin working with zebra printers

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on artemis_zebra