diff options
author | Orangerot <purple@orangerot.dev> | 2024-07-30 10:56:05 +0200 |
---|---|---|
committer | Orangerot <purple@orangerot.dev> | 2024-08-15 11:43:04 +0200 |
commit | 9a8db98b6398090f577fad4c347832a0aa801085 (patch) | |
tree | 4b09e82a10157ffcf5b2a9cc254b52504836a1c0 /res/gui/EventInfoPage.qml | |
parent | 0ff1b51223bd8f3424c83e5c044fd8a8887ae1c6 (diff) |
feat(qtquick): chat example to build up on
Diffstat (limited to 'res/gui/EventInfoPage.qml')
-rw-r--r-- | res/gui/EventInfoPage.qml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/res/gui/EventInfoPage.qml b/res/gui/EventInfoPage.qml new file mode 100644 index 0000000..956507e --- /dev/null +++ b/res/gui/EventInfoPage.qml @@ -0,0 +1,27 @@ +import QtQuick +import QtQuick.Layouts +import QtQuick.Controls + +Page { + id: root + property string event_id + + header: ToolBar { + ToolButton { + text: qsTr("Back") + anchors.left: parent.left + anchors.leftMargin: 10 + anchors.verticalCenter: parent.verticalCenter + onClicked: root.StackView.view.pop() + } + Label { + id: pageTitle + font.pixelSize: 20 + anchors.centerIn: parent + text: qsTr("Event Info") + } + } + + +} + |