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

Plugin for Flutter to print on thermal printers via ESC/POS commands.

example/lib/main.dart

import 'dart:async';
import 'dart:developer';

import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_thermal_printer/flutter_thermal_printer.dart';
import 'package:flutter_thermal_printer/utils/ble_device_window.dart';

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

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

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

class _MyAppState extends State<MyApp> {
  final _flutterThermalPrinterPlugin = FlutterThermalPrinter.instance;
  List<BleDeviceWindow> windowsBleList = [];
  List<BluetoothDevice> bleDevices = [];

  // Get Bluetooth devices list of Windows
  Future<void> getWindowBleDevicesList() async {
    try {
      final devices =
          await _flutterThermalPrinterPlugin.getWindowBleDevicesList();
      setState(() {
        windowsBleList = devices;
      });
    } on PlatformException {
      print('Failed to get USB devices list.');
    }
  }

  // Get Bluetooth devices list of others
  Future<void> getOthersBleDevicesList() async {
    try {
      final devices = await _flutterThermalPrinterPlugin.getBleDevices();
      setState(() {
        bleDevices = devices;
      });
    } on PlatformException {
      print('Failed to get USB devices list.');
    }
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
          systemOverlayStyle: const SystemUiOverlayStyle(
            statusBarColor: Colors.transparent,
          ),
        ),
        body: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            ElevatedButton(
              onPressed: () {
                getWindowBleDevicesList();
              },
              child: const Text('Get Window Ble Devices List'),
            ),
            ElevatedButton(
              onPressed: () {
                getOthersBleDevicesList();
              },
              child: const Text('Get Others Ble Devices List'),
            ),
            Expanded(
              child: ListView.builder(
                itemCount: bleDevices.length,
                itemBuilder: (context, index) {
                  return ListTile(
                    onTap: () async {
                      final isConnected = await _flutterThermalPrinterPlugin
                          .connect(bleDevices[index]);
                      log("Devices: $isConnected");
                    },
                    title: Text(bleDevices[index].platformName),
                    subtitle: Text(
                        "VendorId: ${bleDevices[index].remoteId.str} - Connected: ${bleDevices[index].isConnected}"),
                    trailing: IconButton(
                      icon: const Icon(Icons.connect_without_contact),
                      onPressed: () async {
                        final profile = await CapabilityProfile.load();
                        final generator = Generator(PaperSize.mm80, profile);
                        List<int> bytes = [];
                        bytes += generator.text('Hello World');
                        bytes +=
                            generator.text("|||| FLUTTER THERMAL PRINTER ||||");
                        bytes += generator.feed(2);
                        bytes += generator.cut();
                        await _flutterThermalPrinterPlugin.printData(
                          bleDevices[index],
                          bytes,
                        );
                      },
                    ),
                  );
                },
              ),
            ),
          ],
        ),
      ),
    );
  }
}
22
likes
0
pub points
90%
popularity

Publisher

verified publishersunilflutter.in

Plugin for Flutter to print on thermal printers via ESC/POS commands.

Homepage

License

unknown (license)

Dependencies

esc_pos_utils, flutter, flutter_blue_plus, plugin_platform_interface, win_ble

More

Packages that depend on flutter_thermal_printer