mirror of
https://github.com/Qsgs-Fans/FreeKill.git
synced 2024-11-16 11:42:45 +08:00
19 lines
308 B
QML
19 lines
308 B
QML
|
import QtQuick 2.15
|
||
|
import QtQuick.Controls 2.0
|
||
|
|
||
|
Item {
|
||
|
id: root
|
||
|
Text {
|
||
|
anchors.centerIn: parent
|
||
|
text: "You are in room."
|
||
|
}
|
||
|
Button {
|
||
|
text: "quit"
|
||
|
onClicked: {
|
||
|
mainStack.pop();
|
||
|
Backend.notifyServer("quit_room", "[]");
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|