platform_serial 0.1.1
platform_serial: ^0.1.1 copied to clipboard
Complete Flutter plugin for managing serial ports. Supports Windows, Linux, macOS, Android (OTG), and iOS (OTG) with a unified interface. Provides synchronous and asynchronous communication, support f [...]
// Copyright (c) 2026 Piergiorgio Vagnozzi.
// Licensed under the MIT License.
import 'package:flutter/material.dart';
import 'src/app.dart';
void main() {
WidgetsFlutterBinding.ensureInitialized();
runApp(const SerialTerminalApp());
}