moonlight-qt/app/gui/main.qml

17 lines
264 B
QML
Raw Normal View History

2018-07-04 21:16:25 +00:00
import QtQuick 2.9
import QtQuick.Controls 2.2
ApplicationWindow {
id: window
visible: true
width: 1280
height: 600
2018-07-04 23:40:21 +00:00
color: "#333333"
2018-07-04 21:16:25 +00:00
StackView {
id: stackView
initialItem: "PcView.qml"
anchors.fill: parent
2018-07-04 21:16:25 +00:00
}
}