add paired devices

This commit is contained in:
Benjamin Palko 2025-07-29 11:03:50 -04:00
parent 149dae4c2e
commit 622604ad08
2 changed files with 69 additions and 4 deletions

View file

@ -62,10 +62,12 @@ StyledPopupWindow {
text: "Paired Devices"
}
DeviceList {
devices: Bluetooth.pairedDevices
onDeviceActivated: device => {
device.connect();
ColumnLayout {
Repeater {
model: Bluetooth.pairedDevices
delegate: PairedDevice {
Layout.fillWidth: true
}
}
}