aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/qmldesigner/landingpage/content/App.qml
blob: 66601a25fc377a22bbdd00ed5c3d4c5aacdc7880 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0

import QtQuick 2.15

Item {
    id: root
    width: 1024
    height: 768
    visible: true

    Screen01 {
        id: mainScreen
        anchors.fill: parent
    }
}