summaryrefslogtreecommitdiff
path: root/res/gui/EventInfoPage.qml
blob: 956507e6fc5829013b2401d3a14dc2eae547e89d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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")
    }
  }


}