aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicklistview/data/headerchangesviewport.qml
blob: b32f7a1236c67f2ac83fefe5521291894b103646 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import QtQuick 2.0

Rectangle {
    width: 240
    height: 320
    color: "#ffffff"
    ListView {
        id: list
        anchors.fill: parent
        objectName: "list"
        delegate: Text {}
        header: Text {
            objectName: "header"
            text: "ninjas"
            height: headerHeight
            width: headerWidth
        }
    }
}