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

    Button {
    }

    Button {
        id: foo
    }

    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
    }
}