-
-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add API to disable Bluetooth #113
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
User description
Implement on
PR Type
enhancement
Description
disableBluetooth
across multiple platforms, including Windows, Linux, and Android.disableBluetooth
functionality in the platform-specific code for Windows and Linux.disableBluetooth
method.Changes walkthrough 📝
15 files
mock_universal_ble.dart
Add disableBluetooth method to MockUniversalBle class
example/lib/data/mock_universal_ble.dart
disableBluetooth
method withUnimplementedError
.home.dart
Add UI button for disabling Bluetooth
example/lib/home/home.dart
universal_ble.dart
Add disableBluetooth method to UniversalBle class
lib/src/universal_ble.dart
disableBluetooth
method toUniversalBle
class.universal_ble_linux.dart
Implement disableBluetooth method for Linux platform
lib/src/universal_ble_linux/universal_ble_linux.dart
disableBluetooth
method for Linux platform.universal_ble.g.dart
Add Pigeon method for disableBluetooth
lib/src/universal_ble_pigeon/universal_ble.g.dart
disableBluetooth
.universal_ble_pigeon_channel.dart
Add disableBluetooth method to Pigeon channel
lib/src/universal_ble_pigeon/universal_ble_pigeon_channel.dart
disableBluetooth
method to Pigeon channel.universal_ble_platform_interface.dart
Add abstract disableBluetooth method to interface
lib/src/universal_ble_platform_interface.dart
disableBluetooth
method.universal_ble_web.dart
Add disableBluetooth method to UniversalBleWeb class
lib/src/universal_ble_web/universal_ble_web.dart
disableBluetooth
method withUnimplementedError
.universal_ble.dart
Add disableBluetooth method to Pigeon interface
pigeon/universal_ble.dart
disableBluetooth
method to Pigeon interface.universal_ble.g.cpp
Add Pigeon handler for disableBluetooth in Windows
windows/src/generated/universal_ble.g.cpp
disableBluetooth
.universal_ble_plugin.cpp
Implement DisableBluetooth method for Windows
windows/src/universal_ble_plugin.cpp
DisableBluetooth
method for Windows.UniversalBle.g.kt
Add Pigeon handler for disableBluetooth in Android
android/src/main/kotlin/com/navideck/universal_ble/UniversalBle.g.kt
disableBluetooth
.UniversalBle.g.swift
Add Pigeon handler for disableBluetooth in Darwin
darwin/Classes/UniversalBle.g.swift
disableBluetooth
.universal_ble.g.h
Add DisableBluetooth method to Pigeon interface in Windows
windows/src/generated/universal_ble.g.h
DisableBluetooth
method to Pigeon interface.universal_ble_plugin.h
Add DisableBluetooth method to plugin interface in Windows
windows/src/universal_ble_plugin.h
DisableBluetooth
method to plugin interface.