aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicklistview2/data/fetchMore.qml
blob: 4ce53e4d28b8345ceb3ee445ccd1bd15cb3a674e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import QtQuick
import org.qtproject.Test

ListView {
    id: listView
    width: 300
    height: 150
    flickDeceleration: 10000

    model: FetchMoreModel
    delegate: Text {
        height: 50
        text: model.display
    }

    Text {
        anchors.right: parent.right
        text: "count " + listView.count
        color: listView.moving ? "red" : "blue"
    }
}