flutteremv 0.0.1
flutteremv: ^0.0.1 copied to clipboard
Another pakage for topwisemp35p to support another set of the pos device. it uses NIBSS processor
import 'package:flutter/material.dart';
import 'home.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 MaterialApp(
debugShowCheckedModeBanner: false,
title: 'T-rex',
theme: ThemeData(
fontFamily: 'AudioWide',
primaryColor: Colors.green,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: const Home(),
);
}
}