flutter_bluetooth_serial 0.1.0 copy "flutter_bluetooth_serial: ^0.1.0" to clipboard
flutter_bluetooth_serial: ^0.1.0 copied to clipboard

outdated

A basic Flutter Bluetooth Serial library

example/lib/main.dart

import 'package:flutter/material.dart';

import './MainPage.dart';

void main() => runApp(new ExampleApplication());

class ExampleApplication extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: MainPage()
    );
  }
}