qt6-bb10/qtdeclarative/tests/auto/quick/scenegraph/data/renderControl_rect.qml

17 lines
311 B
QML

// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick
Rectangle {
width: 200
height: 200
color: "steelblue"
Rectangle {
width: 150
height: 150
anchors.centerIn: parent
color: "red"
}
}