aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickgridview/data/margins2.qml
blob: 6af4f5ca20e9c93f5b9624988a630d4cf269d6dc (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
30
31
32
33
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick 2.7

Item {
    id: root
    height: 1000
    width: 1000

    GridView {
        id: grid
        objectName: "grid"
        height: 500
        width: parent.width
        topMargin: 20
        leftMargin: 200
        rightMargin: 200
        bottomMargin: 30
        cellWidth: (grid.width - grid.leftMargin - grid.rightMargin) / 3
        model: 9
        delegate: Rectangle {
            border.width: 1
            objectName: "child"
            width: grid.cellWidth
            height: 100
            Text {
                anchors.centerIn: parent
                text: modelData
            }
        }
    }
}