print_master_ble 0.1.0
print_master_ble: ^0.1.0 copied to clipboard
Flutter library for Zhuhai Quin thermal printers (Marklife, Phomemo, Vretti). Implements Protocol 0x1F with Floyd-Steinberg dithering and ZLIB compression.
import 'package:flutter/material.dart';
import 'ui/print_screen.dart';
import 'ui/theme/app_theme.dart';
void main() {
runApp(
MaterialApp(
debugShowCheckedModeBanner: false,
theme: appTheme,
home: const PrintScreen(),
),
);
}