flutter_classic_connect 0.0.2 flutter_classic_connect: ^0.0.2 copied to clipboard
this is progress ...
import 'package:flutter/material.dart';
import 'package:flutter_classic_connect/flutter_classic_connect.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
final instance = FlutterClassicConnect.instance;
@override
void initState() {
super.initState();
}
// Platform messages are asynchronous, so we initialize in an async method.
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: const Center(
child: Text('Test'),
),
),
);
}
}