mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-12-14 21:32:27 +00:00
16 lines
264 B
QML
16 lines
264 B
QML
import QtQuick 2.9
|
|
import QtQuick.Controls 2.2
|
|
|
|
ApplicationWindow {
|
|
id: window
|
|
visible: true
|
|
width: 1280
|
|
height: 600
|
|
color: "#333333"
|
|
|
|
StackView {
|
|
id: stackView
|
|
initialItem: "PcView.qml"
|
|
anchors.fill: parent
|
|
}
|
|
}
|