22 lines
316 B
QML
22 lines
316 B
QML
import QtQuick 2.0
|
|
import QtQuick.Controls 2.2
|
|
|
|
Item {
|
|
id: root
|
|
|
|
property string title: ""
|
|
property var lights: []
|
|
|
|
Rectangle {
|
|
width: parent.width
|
|
height: 20
|
|
|
|
color: "green"
|
|
|
|
Label {
|
|
text: root.title
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|
|
}
|