C Qt Quick Ultralite layouts Example // Copyright (C) 2024 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial import QtQuick Rectangle { id: root color: root.colorName height: 32 width: 76 property string colorName Text { anchors.centerIn: parent font.pointSize: 9 text: root.colorName } }