qtdeclarative/tests/auto/qml/qmllint/data/delegateContextProperties.qml

10 lines
142 B
QML

import QtQuick
ListView {
model: ListModel {}
delegate: Text {
text: model.text
color: index % 2 ? "red" : "blue"
}
}