aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/obscuren/qml/examples/modelview/delegate/delegate.qml
blob: 4b37d31f6e0756ac753ebe73032130ba40b60b48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import QtQuick 2.0

Item {
    width: 320; height: 200

    ListView {
        width: 120;
        model: colors.len
        delegate: Text {
            text: "I am color number: " + index
            color: colors.color(index)
        }
        anchors.top: parent.top
        anchors.bottom: parent.bottom
        anchors.horizontalCenter: parent.horizontalCenter
    }
}