blob: 5c23d64cd33b2b403391470273c99177b013885b [file] [log] [blame]
import QtQuick 2.0
import QtQml.Models 2.1
ListView {
width: 360
height: 360
model: ObjectModel {
Rectangle {
width: 20
height: 20
color: "red"
}
Rectangle {
width: 20
height: 20
color: "green"
}
Rectangle {
width: 20
height: 20
color: "blue"
}
}
}