2023-09-01 10:48:19 +00:00
|
|
|
// Copyright (C) 2023 The Qt Company Ltd.
|
2022-06-03 11:26:02 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2017-07-04 17:20:08 +00:00
|
|
|
|
2020-12-01 12:57:32 +00:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
2017-07-04 17:20:08 +00:00
|
|
|
|
|
|
|
ApplicationWindow {
|
|
|
|
visible: true
|
2023-09-01 10:48:19 +00:00
|
|
|
width: Screen.desktopAvailableWidth
|
|
|
|
height: Screen.desktopAvailableHeight
|
2017-07-04 17:20:08 +00:00
|
|
|
title: qsTr("Coffee")
|
|
|
|
|
|
|
|
ApplicationFlow {
|
2023-09-01 10:48:19 +00:00
|
|
|
width: parent.width
|
|
|
|
height: parent.height
|
|
|
|
mode: (Screen.height > Screen.width) ? "portrait" : "landscape"
|
2017-07-04 17:20:08 +00:00
|
|
|
}
|
|
|
|
}
|