V
Size: a a a
AS
AS
AS
AS
V
AS
ListModel {
id: listModel
ListElement {
color: "red"
}
ListElement {
color: "yellow"
}
ListElement {
color: "green"
}
}
ListView {
model: listModel
anchors.fill: parent
delegate: Rectangle {
width: ListView.view.width
height: 20
color: model.color
}
}
AS
ListModel {
id: listModel
ListElement {
color: "red"
}
ListElement {
color: "yellow"
}
ListElement {
color: "green"
}
}
ListView {
model: listModel
anchors.fill: parent
delegate: Rectangle {
width: ListView.view.width
height: 20
color: model.color
}
}
V
ListModel {
id: listModel
ListElement {
color: "red"
}
ListElement {
color: "yellow"
}
ListElement {
color: "green"
}
}
ListView {
model: listModel
anchors.fill: parent
delegate: Rectangle {
width: ListView.view.width
height: 20
color: model.color
}
}
AS
AM
AN
E