C

Qt Quick Ultralite Motorcycle Cluster Demo

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

Item {
    id: root
    width: 800
    height: 480

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