summaryrefslogtreecommitdiffstats
path: root/examples/models/fsviewer/main.qml
blob: 7127c8b830f9513ff2bd103f786adee8a260e274 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import QtQuick 2.0

Item {
    id: root
    anchors.fill: parent

    ListView {
        anchors.fill: parent
        model: fsmodel
        delegate: Rectangle {
            height: 20
            color: "green"
            width: parent.width
            Text {
                anchors.fill: parent
                text: model.fileName
            }
        }
    }
}