2022-04-04 18:06:43 +02:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Layouts
|
|
|
|
import QtQuick.Controls
|
|
|
|
import QtQuick.Controls.Material
|
2022-05-05 13:02:54 +02:00
|
|
|
import ScreenPlayWorkshop
|
2022-04-04 18:06:43 +02:00
|
|
|
|
|
|
|
Window {
|
|
|
|
id: root
|
2022-05-20 13:23:11 +02:00
|
|
|
width: 1400
|
2022-04-04 18:06:43 +02:00
|
|
|
height: 768
|
|
|
|
visible: true
|
|
|
|
title: qsTr("ScreenPlayWorkshop")
|
2022-05-20 13:23:11 +02:00
|
|
|
Component.onCompleted: root.Material.theme = Material.Dark
|
2022-04-04 18:06:43 +02:00
|
|
|
|
2022-04-23 14:32:36 +02:00
|
|
|
Loader {
|
2022-05-20 13:23:11 +02:00
|
|
|
anchors {
|
|
|
|
top: nav.bottom
|
|
|
|
right: parent.right
|
|
|
|
bottom: parent.bottom
|
|
|
|
left: parent.left
|
|
|
|
}
|
|
|
|
|
|
|
|
source: "qrc:/qml/ScreenPlayWorkshop/qml/SteamWorkshop.qml"
|
|
|
|
}
|
|
|
|
Rectangle {
|
|
|
|
height: 60
|
|
|
|
color: Material.background
|
|
|
|
id: nav
|
|
|
|
anchors {
|
|
|
|
right: parent.right
|
|
|
|
left: parent.left
|
|
|
|
}
|
2022-04-23 14:32:36 +02:00
|
|
|
}
|
2022-05-20 13:23:11 +02:00
|
|
|
|
2022-04-04 18:06:43 +02:00
|
|
|
}
|