FreeKill/qml/Pages/Room.qml

19 lines
307 B
QML
Raw Normal View History

2022-03-01 13:18:00 +08:00
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();
2022-03-02 20:56:37 +08:00
Backend.notifyServer("QuitRoom", "[]");
2022-03-01 13:18:00 +08:00
}
}
}