C

Qt Quick Ultralite Motorcycle Cluster Demo

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

Row {
    id: root
    property string valueText: ""
    property string unitText: ""
    property color fontsColor

    spacing: 8
    Text {
        id: textValue
        font.pixelSize: 36
        font.bold: false
        font.family: "Barlow-mono"
        color: fontsColor
        text: valueText
    }

    Text {
        id: unit
        height: textValue.height
        anchors.baseline: textValue.baseline
        font.pixelSize: 36
        font.bold: false
        font.family: "Barlow-mono"
        color: fontsColor
        text: unitText
    }
}