[Improve] Updated README & Example app 1.31.4[Fix] iOS: mtu and auto connect are incompatible 1.31.3[Fix] adapterState.first & connectionState.first dont work (regression 1.30.7)1.31.2[Fix] Gradle 7 (Flutter 2) would not build (regression 1.7.6) ...
Example FlutterBluePlus has a beautiful example app, useful to debug issues. cd ./example flutter run Usage 🔥 Error Handling 🔥 Flutter Blue Plus takes error handling seriously. Every error returned by the native platform is checked and thrown as an exception where appropriate. See Reference...
658 How do I use hexadecimal color strings in Flutter? 0 flutter_blue_plus example can't connect to esp32 590 How to change the application launcher icon on Flutter? 519 How to change package name in flutter? 359 Passing data to StatefulWidget and accessing it in its state in Flutter ...
So this is deprecated now. When you interact with the Plugin you no longer create a Instance e.g FlutterBluePlus flutterBlue = FlutterBluePlus(); you just use FlutterBluePlus.isScanning for ExampleShare Improve this answer Follow answered Sep 11, 2023 at 9:25 DEFL 1,05288 silver badges2...
A full example is here.Mockable classCreate the following class:import '../flutter_blue_plus.dart'; /// Wrapper for FlutterBluePlus in order to easily mock it /// Wraps all static calls for testing purposes class FlutterBluePlusMockable { Future<void> startScan({ List<Guid> withServices...
FlutterBluePlus has a beautiful example app, useful to debug issues. cd ./example flutter run Usage 🔥 Error Handling 🔥 Flutter Blue Plus takes error handling seriously. Every error returned by the native platform is checked and thrown as an exception where appropriate. See Reference for ...
Files master .github .vscode android example ios lib macos site .gitignore .metadata CHANGELOG.md LICENSE MIGRATION.md MOCKING.md README.md pubspec.yamlBreadcrumbs flutter_blue_plus / pubspec.yaml Latest commit chipweinberger Release 1.32.13 b8ae821· Sep 1, 2024 HistoryHistory File metadata ...
Commits on Sep 13, 2024 add connection timeout log chipweinberger committedSep 13, 2024 Commits on Sep 9, 2024 [Example] Android: Update compileSdkVersion 34 chipweinberger committedSep 10, 2024 Commits on Sep 4, 2024 Update README.md ...
Example code:Stream<BluetoothDevice?> myDeviceStream = FlutterBluePlus.scanResults .map((list) => list.first) .where((r) => r.advertisementData.advName == "myDeviceName") .map((r) => r.device); // start listening before we call startScan so we do not miss the result Future<...
.github flutter_blue_plus_windows Aug 21, 2023 example 🔨 tricky solution for mtu. Oct 7, 2024 lib * Fix a bug with onValueReceived of emitting write packet #22. Nov 1, 2024 .gitignore Code modified: remove internal test example code Mar 28, 2024 CHANGELOG.md * Fix a bug with on...