C

Qt Quick Ultralite Motorcycle Cluster Demo

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

Rectangle {
    id:root
    color: "black"
    width: 854
    height: 480

    MotorClusterMain {
        id: motorCluster
        anchors.centerIn: parent
    }
}