aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicklistview/data/margins2.qml
blob: e11c803c4b5c08369c9c62183583925ba372b1a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import QtQuick 2.0

Item {
    width: 200; height: 200
    Page {
        Rectangle {
            anchors.fill: parent
            color: "lightsteelblue"
        }
        ListView {
            objectName: "listview"
            topMargin: 20
            bottomMargin: 20
            leftMargin: 20
            rightMargin: 20
            anchors.fill: parent

            model: 20
            delegate: Rectangle {
                color: "skyblue"
                width: 60; height: 60
                Text {
                    id: txt
                    text: "test" + index
                }
            }
        }
    }
}