flutter_classic_connect 0.0.2 copy "flutter_classic_connect: ^0.0.2" to clipboard
flutter_classic_connect: ^0.0.2 copied to clipboard

PlatformAndroid

this is progress ...

example/lib/main.dart

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'),
        ),
      ),
    );
  }
}
1
likes
120
pub points
0%
popularity

Publisher

unverified uploader

this is progress ...

Homepage

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, plugin_platform_interface, rxdart

More

Packages that depend on flutter_classic_connect