ywz_blue_plugin 0.0.11 copy "ywz_blue_plugin: ^0.0.11" to clipboard
ywz_blue_plugin: ^0.0.11 copied to clipboard

YWZ Bluetooth Flutter plugin.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:ywz_blue_plugin/ywz_blue_plugin.dart';

void main() => runApp(MyApp());

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

class _MyAppState extends State<MyApp> {
  List<BlueDevice> blueDevices = List();

  _setData(int code) {
    if(code == Contans.SUCCESS){
      blueDevices.clear();
      blueDevices.addAll(BlueManage.conDevices);
      blueDevices.addAll(BlueManage.scanDevices);
      setState(() {});
    }
  }

  @override
  void dispose() {
    // TODO: implement dispose
    super.dispose();
    BlueManage.instance.stopScan();
  }

  Widget _getView(BuildContext context, int index) {
    var deviceId = blueDevices[index].getId();

    return Container(
      padding: EdgeInsets.fromLTRB(50.0, 0, 50.0, 0),
      child: Center(
        child: Row(
          mainAxisAlignment: MainAxisAlignment.spaceBetween,
          children: <Widget>[
            Text("报警器" + deviceId.substring(deviceId.length - 3)),
            GestureDetector(
              child: Text(blueDevices[index].getConnect() ? "已连接" : "点击连接"),
              onTap: ()  async {
                var connect =
                    await BlueManage.instance.connect(blueDevices[index]);
                if (connect) {
                  BlueManage.instance.startScan((code) => _setData(code));
                }else{
                  BlueManage.instance.startScan((code) => _setData(code));
                }
              },
            )
          ],
        ),
      ),
    );
  }

  @override
  Widget build(BuildContext context) {
    // TODO: implement build
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: Text(
            "Alarm Demo",
            style: TextStyle(color: Colors.black),
          ),
          centerTitle: true,
        ),
        body: Container(
          width: double.infinity,
          color: Colors.white,
          child: Column(
            children: <Widget>[
              SizedBox(
                height: 30.0,
              ),
              Expanded(
                flex: 1,
                child: ListView.builder(
                    itemCount: blueDevices.length,
                    itemExtent: 30.0,
                    itemBuilder: (context, index) => _getView(context, index)),
              ),
              SizedBox(
                height: 30.0,
              ),
              GestureDetector(
                child: Container(
                  height: 44.0,
                  margin: EdgeInsets.fromLTRB(30.0, 0, 30.0, 30),
                  decoration: BoxDecoration(
                      color: Colors.white,
                      border:
                          Border.all(color: Color.fromRGBO(153, 153, 153, 1)),
                      borderRadius: BorderRadius.circular(22.0)),
                  child: Center(
                    child: Text(
                      "搜索",
                      style: TextStyle(color: Colors.black, fontSize: 17.0),
                    ),
                  ),
                ),
                onTap: () {
                  BlueManage.instance.startScan((code) => _setData(code));
                },
              ),
            ],
          ),
        ),
      ),
    );
  }
}
1
likes
20
pub points
0%
popularity

Publisher

unverified uploader

YWZ Bluetooth Flutter plugin.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, flutter_blue

More

Packages that depend on ywz_blue_plugin