mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-15 07:57:19 +00:00
14 lines
200 B
QML
14 lines
200 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"
|
|
|
|
PcView {
|
|
}
|
|
}
|