qs bluetooth
This commit is contained in:
parent
c6699a5b52
commit
6c73e52f6d
16 changed files with 277 additions and 3 deletions
|
|
@ -0,0 +1,23 @@
|
|||
import QtQuick
|
||||
import QtQuick.Layouts
|
||||
import qs.bar
|
||||
|
||||
BarWidgetInner {
|
||||
id: root
|
||||
required property var bar;
|
||||
implicitHeight: column.implicitHeight + 10
|
||||
|
||||
ColumnLayout {
|
||||
id: column
|
||||
|
||||
anchors {
|
||||
fill: parent
|
||||
margins: 5
|
||||
}
|
||||
|
||||
Bluetooth {
|
||||
Layout.fillWidth: true
|
||||
bar: root.bar
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue