uni_flutter_plugin 1.0.0-4
uni_flutter_plugin: ^1.0.0-4 copied to clipboard
unipos device package for printing in the thermal printer device. allows printing of receipt and images
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:uni_flutter_plugin_example/home_page.dart';
import 'package:uni_flutter_plugin_example/printer_page.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return const MaterialApp(
debugShowCheckedModeBanner: false,
title: "UniPOS Flutter Plugin",
home: HomePage(),
);
}
}