C

Qt Cluster: Rendering and Recovery from Main UI Failure

// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

// This file is part of the Qt Safe Renderer module
import QtQuick
import ClusterDemo
import ".."

Item {
    id: bottomPanel
    width: bottomPanelImage.width
    height: bottomPanelImage.height
    anchors.horizontalCenter: parent.horizontalCenter

    Image {
        id: bottomPanelImage
        source: "image://etc/BottomPanel.png"
    }

    Text {
        id: textTime
        text: ValueSource.time
        font.pixelSize: 24
        color: "white"
        anchors.horizontalCenter: parent.horizontalCenter
        horizontalAlignment: Text.AlignHCenter
        anchors.top: parent.top
        anchors.topMargin: 66
    }
}