19 lines
315 B
QML
19 lines
315 B
QML
// Copyright (C) 2021 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
|
|
|
import QtQuick 6.2
|
|
import NativGuiAlisa
|
|
|
|
Window {
|
|
width: mainScreen.width
|
|
height: mainScreen.height
|
|
|
|
visible: true
|
|
title: "NativGuiAlisa"
|
|
|
|
Screen01 {
|
|
id: mainScreen
|
|
}
|
|
|
|
}
|
|
|