Добавил загрузку модели, добавил рыбу делегата

This commit is contained in:
2018-07-23 21:22:56 +02:00
parent 773ad2a91d
commit c624c23fee
4 changed files with 83 additions and 4 deletions

21
LightGroup.qml Normal file
View File

@@ -0,0 +1,21 @@
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
}
}
}