printly 0.3.0 copy "printly: ^0.3.0" to clipboard
printly: ^0.3.0 copied to clipboard

Thermal printer SDK for Flutter. Bluetooth Classic + BLE, ESC/POS receipts (text, barcode, QR), and Turkish that prints even on printers that ignore code pages.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'view/home_shell.dart';

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

/// Root of the printly playground.
///
/// Kept deliberately thin — `example/test/widget_test.dart` pumps exactly this
/// widget, so it must stay const-constructible and free of platform calls.
class PrintlyExampleApp extends StatelessWidget {
  const PrintlyExampleApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'printly example',
      theme: ThemeData(useMaterial3: true, colorSchemeSeed: Colors.indigo),
      home: const HomeShell(),
    );
  }
}
1
likes
160
points
210
downloads

Documentation

API reference

Publisher

verified publishererenkirkil.com

Weekly Downloads

Thermal printer SDK for Flutter. Bluetooth Classic + BLE, ESC/POS receipts (text, barcode, QR), and Turkish that prints even on printers that ignore code pages.

Repository (GitHub)
View/report issues
Contributing

Topics

#printer #thermal-printer #escpos #bluetooth #turkish

License

MIT (license)

Dependencies

esc_pos_utils_plus, flutter, permission_handler, plugin_platform_interface, rxdart, shared_preferences

More

Packages that depend on printly

Packages that implement printly