From eb61690873e234ea28a3f437fb7211c773a449fe Mon Sep 17 00:00:00 2001 From: Orangerot Date: Fri, 16 Aug 2024 07:06:05 +0200 Subject: feat(EventInfo): display EventInfo with List of Competitors --- res/gui/EventInfoPage.qml | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) (limited to 'res/gui/EventInfoPage.qml') diff --git a/res/gui/EventInfoPage.qml b/res/gui/EventInfoPage.qml index 956507e..d04716b 100644 --- a/res/gui/EventInfoPage.qml +++ b/res/gui/EventInfoPage.qml @@ -4,7 +4,8 @@ import QtQuick.Controls Page { id: root - property string event_id + property string eventName + property list competitors header: ToolBar { ToolButton { @@ -18,7 +19,29 @@ Page { id: pageTitle font.pixelSize: 20 anchors.centerIn: parent - text: qsTr("Event Info") + text: eventName + } + } + + ListView { + id: listView + anchors.fill: parent + topMargin: 48 + leftMargin: 48 + bottomMargin: 48 + rightMargin: 48 + spacing: 20 + model: competitors + delegate: ItemDelegate { + text: modelData + width: listView.width - listView.leftMargin - listView.rightMargin + height: avatar.implicitHeight + 32 + leftPadding: avatar.implicitWidth + 32 + + Image { + id: avatar + // source: "images/" + modelData.replace(" ", "_") + ".png" + } } } -- cgit v1.2.3