ble 2.0.0 copy "ble: ^2.0.0" to clipboard
ble: ^2.0.0 copied to clipboard

A Flutter plugin to BlueTooth.

ble #

A Flutter plugin to BlueTooth Device.Supports iOS,Android.Not all methods are supported on all platforms.

Getting Started #

To import ble'

    import 'package:ble/ble.dart';

To use flutter_ble

    
    // init flutter_ble 
    Ble.getInstance();
    
    // implements
    implements DeviceListener
    
    // add listener
    @override
    void initState() {
       super.initState();
       Ble().setDeviceListener(this);
    }

    // use methods
    GestureDetector(
        onTap: () {
               Ble.getInstance().startScanBluetooth;
        },
        chile:...                   
    

ProGuard #


-keep class com.lg.flutter_ble.BleDeviceBean  { *; }

screeenshots #

License #

Copyright 2020 Zackratos

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
5
likes
30
pub points
35%
popularity

Publisher

unverified uploader

A Flutter plugin to BlueTooth.

Repository (GitHub)
View/report issues

License

Apache-2.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on ble