C

Qt Quick Ultralite loader Example

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

MouseArea {
    id: button
    property string icon;

    onPressedChanged: background.opacity = pressed ? 0.5 : 0

    Rectangle {
        id: background
        anchors.fill: parent
        color: "black"
        opacity: 0
    }

    Image {
        anchors.centerIn: parent
        source: icon
        scale: 0.7
    }
}