bluetooth_low_energy 0.0.1 copy "bluetooth_low_energy: ^0.0.1" to clipboard
bluetooth_low_energy: ^0.0.1 copied to clipboard

outdated

A bluetooth low energy plugin for flutter, which can be used for a central role.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'views.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: ThemeData(
        fontFamily: 'IBM Plex Mono',
      ),
      home: HomeView(),
      routes: {
        'gatt': (context) => GattView(),
      },
    );
  }
}
106
likes
0
points
2.8k
downloads

Publisher

verified publisherhebei.dev

Weekly Downloads

A bluetooth low energy plugin for flutter, which can be used for a central role.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

collection, convert, flutter, protobuf

More

Packages that depend on bluetooth_low_energy