aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/objectsSpacing.qml
blob: 6adc89778c24d7d2b5876837173b3b7a91d03359 (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
Item {

    Button {
    }

    height: 360
    width: 360

    Rectangle {
        color: "salmon"
        height: 360
        width: 360

        Item {

            Loader {
                height: 360
                width: 360
            }
            Loader {
                height: 360
                width: 360
            }

        }
    }
    Image {
        height: 360
        width: 360
    }
}