C

Qt Quick Ultralite Automotive Cluster Demo

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

QtObject {
    readonly property int namesCount: 10
    readonly property list streetNames: [
        "Lees Creek Rd.",
        "Railroad St.",
        "Livingston Ave.",
        "Wellington Dr.",
        "Victoria St.",
        "South Mulberry St.",
        "Ridgewood Lane",
        "Green Hill St.",
        "Santa Clara St.",
        "Franklin Ave."
    ]
}