# flutter_ble **Repository Path**: jpfei/flutter_ble ## Basic Information - **Project Name**: flutter_ble - **Description**: flutter蓝牙SDK - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: kit - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-11-10 - **Last Updated**: 2024-10-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 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 ![](screenshots/1.jpg) ![](screenshots/2.jpg) ## 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. ```