C

Qt Quick Ultralite styling Example

// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial
import QtQuick 2.15
import QtQuick.Controls 2.15

Rectangle {
    color: "black"
    Column {
        anchors.centerIn: parent
        Button {
            text: "Button"
        }
        CheckBox {
            text: "CheckBox"
        }
    }
}