summaryrefslogtreecommitdiffstats
path: root/examples/sensors/maze/components/ApplicationWindow.qml
blob: 3f87d7247a41ccc68e8ad2b6a4526e25236d6465 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//Import the declarative plugins
import QtQuick

Rectangle {
    id: appWnd
    x: 0
    y: 0
    width: 320
    height: 480
    color: "#ececec"
}