diff options
author | Orangerot <purple@orangerot.dev> | 2024-07-30 10:56:05 +0200 |
---|---|---|
committer | Orangerot <purple@orangerot.dev> | 2024-07-30 10:56:05 +0200 |
commit | 71aee728b7bc5868e1e6ade8fbe615a6fdf132ba (patch) | |
tree | 1b8250c172791587abd38fa9b02ccd34d54925ec /EventInfoPage.qml | |
parent | ef2b0ced30063654f06bb1ff12ba6f2a86167bc9 (diff) |
feat(qtquick): chat example to build up on
Diffstat (limited to 'EventInfoPage.qml')
-rw-r--r-- | EventInfoPage.qml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/EventInfoPage.qml b/EventInfoPage.qml new file mode 100644 index 0000000..956507e --- /dev/null +++ b/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") + } + } + + +} + |