aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/delegateContextProperties.qml
blob: 4e133a38de2213fba4f022a4364b1dd799ce7a2d (plain)
1
2
3
4
5
6
7
8
9
import QtQuick

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