Add register groups settings page

This commit is contained in:
2023-02-18 16:09:51 +01:00
parent cafc79e3fb
commit 36990980a4
5 changed files with 96 additions and 33 deletions

View File

@ -13,6 +13,8 @@ Item {
property alias masterBlue: masterBlue.value
property alias masterWhite: masterWhite.value
property bool needsRegler: true
Button {
anchors.top: parent.top
anchors.right: parent.right
@ -85,37 +87,4 @@ Item {
Layout.fillHeight: true
}
}
Flickable {
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: parent.bottom
height: 300
contentWidth: theFlow.width
contentHeight: theFlow.height
flickableDirection: Flickable.HorizontalFlick
RowLayout {
id: theFlow
height: parent.height
spacing: 5
Repeater {
model: devicesModel
delegate: LightSliderPane {
light: model
//Layout.fillHeight: true
height: theFlow.height
}
}
}
}
}