blob: 3c61991fcbdb9bc2315b35c63a3db614edc3b17a [file] [log] [blame]
import QtQuick 2.0
import QtQml.Models 2.12
Item {
width: 100
height: 100
ListView {
anchors.fill: parent
model: visualModel.parts.list
}
DelegateModel {
id: visualModel
model: myModel
delegate: Package {
Item {
Package.name: "list"
width: 100
height: 20
}
Item {
id: gridItem
Package.name: "grid"
width: 50
height: 50
}
Rectangle {
objectName: "delegate"
parent: gridItem
width: 20
height: 20
}
}
}
GridView {
anchors.fill: parent
model: visualModel.parts.grid
}
}