aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/scenegraph/data/simple.qml
blob: 97009b451d833716d1821662dcad783bfc6c42ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

import QtQuick 2.2

Rectangle {
    width: 200
    height: 200
    color: "steelblue"
    Rectangle {
        width: 150
        height: 150
        anchors.centerIn: parent
        color: "palegreen"
        rotation: 45
        Text {
            rotation: -45
            text: "Simple QML.."
            anchors.centerIn: parent
        }
    }
}