Refactor qml file hierarchy

This commit is contained in:
2022-08-31 19:09:04 -04:00
parent 552e18a42f
commit bc0a9c8686
8 changed files with 11 additions and 6 deletions
@@ -0,0 +1,33 @@
import QtQuick 2.12
import QtQuick.Controls 1.4
Column {
property var title
property var provider
property var repeaterModel
property bool elemSelected
property int xIndex
Item {
width: 10
height: 40
}
Text {
text: title
font.pointSize: 30
color: "white"
}
Item {
width: 10
height: 40
}
Row {
Repeater {
property var provider: modelData
model: repeaterModel
Show {
show: provider.getShow(modelData)
}
}
}
}