mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-19 02:52:58 +00:00
18 lines
288 B
QML
18 lines
288 B
QML
import QtQuick 2.9
|
|
import QtQuick.Controls 2.2
|
|
|
|
ApplicationWindow {
|
|
id: window
|
|
visible: true
|
|
width: 640
|
|
height: 480
|
|
title: qsTr("Stack")
|
|
color: "#333333"
|
|
|
|
StackView {
|
|
id: stackView
|
|
initialItem: "PcView.qml"
|
|
anchors.fill: parent
|
|
}
|
|
}
|