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

outdated

Image based printing for bluetooth thermal printer.

example/lib/main.dart

import 'dart:async';

import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_bluetooth_printer/flutter_bluetooth_printer.dart';

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

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

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

class _MyAppState extends State<MyApp> {
  List<BluetoothDevice> _devices = [];

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

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    List<BluetoothDevice> platformVersion;
    // Platform messages may fail, so we use a try/catch PlatformException.
    // We also handle the message potentially returning null.
    try {
      platformVersion = await BluetoothPrinter.instance.getBondedDevices();
    } on PlatformException {
      platformVersion = [];
    }

    // 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;

    setState(() {
      _devices = platformVersion;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text('Running on: $_devices\n'),
        ),
      ),
    );
  }
}
96
likes
80
points
2.01k
downloads

Publisher

verified publishermaseka.dev

Weekly Downloads

Image based printing for bluetooth thermal printer.

Documentation

API reference

License

MIT (license)

Dependencies

flutter, image

More

Packages that depend on flutter_bluetooth_printer

Packages that implement flutter_bluetooth_printer