aboutsummaryrefslogtreecommitdiffstats
path: root/tools/svgtoqml/main.qml
blob: 9a8ceefe5d7fe339cce9036c68472a2deee6bad5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

import QtQuick
import QtQuick.Shapes
import QtQuick.Controls
import QtQuick.Layouts

Window {
    id: mainWindow
    width: 1280
    height: 960
    visible: true
    color: "white"

    Item {
        id: svg
        objectName: "svg_item"
        anchors.centerIn: parent
    }
}