diff options
author | Orangerot <purple@orangerot.dev> | 2024-08-16 23:40:38 +0200 |
---|---|---|
committer | Steru <jerrydream111@gmail.com> | 2024-08-16 23:58:52 +0200 |
commit | 256e29a310cf791c27e8912e8861df997ded0cf6 (patch) | |
tree | 04af6099325fc7b62545cd79e6899cd5f838dcbb /res/gui/EventInfoPage.qml | |
parent | 88b1b119dfa35f36b64d81dbe6c84f46d86455c5 (diff) |
fix(EventInfoPage): show comptitor statistics
Diffstat (limited to 'res/gui/EventInfoPage.qml')
-rw-r--r-- | res/gui/EventInfoPage.qml | 30 |
1 files changed, 20 insertions, 10 deletions
diff --git a/res/gui/EventInfoPage.qml b/res/gui/EventInfoPage.qml index 6c46a7f..2934931 100644 --- a/res/gui/EventInfoPage.qml +++ b/res/gui/EventInfoPage.qml @@ -4,8 +4,8 @@ import QtQuick.Controls Page { id: root - property string eventName - property list<QtObject> competitors + required property string eventName + required property list<QtObject> competitors header: ToolBar { ToolButton { @@ -31,17 +31,27 @@ Page { bottomMargin: 48 rightMargin: 48 spacing: 20 - model: eventName + model: competitors delegate: ItemDelegate { - text: "sadly not working..." + required property string name + required property string noc + required property string mark + required property string statistic + required property string gold + required property string silver + required property string bronze width: listView.width - listView.leftMargin - listView.rightMargin - height: avatar.implicitHeight + 32 - leftPadding: avatar.implicitWidth + 32 - - Image { - id: avatar - // source: "images/" + modelData.replace(" ", "_") + ".png" + height: 32 + Text { + anchors.left: parent.left + text: name + " (" + noc + ")" + } + Text { + anchors.right: parent.right + horizontalAlignment: Text.AlignRight + text: mark + " " + statistic + " | " + gold + "🥇 " + silver + "🥈 " + bronze + "🥉" } + } } |