37 lines
781 B
QML
37 lines
781 B
QML
import QtQuick 2.14
|
|
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Controls 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
Item {
|
|
id: root
|
|
width: 800
|
|
height: 100
|
|
|
|
Row {
|
|
id: selectedColor
|
|
anchors.top: parent.top
|
|
anchors.left: colorSelectionGrid.left
|
|
spacing: 10
|
|
StatusBaseText {
|
|
text: "SelectedColor is"
|
|
}
|
|
Rectangle {
|
|
width: 100
|
|
height: 20
|
|
radius: width/2
|
|
color: colorSelectionGrid.selectedColor
|
|
}
|
|
}
|
|
|
|
StatusColorSelectorGrid {
|
|
id: colorSelectionGrid
|
|
anchors.top: selectedColor.bottom
|
|
anchors.topMargin: 10
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
titleText: "COLOR"
|
|
selectedColorIndex: 2
|
|
}
|
|
}
|