From a17109c81602d54ed875d3893d2138dacec22e30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=EA=A6=AB=EA=A6=B6=EA=A6=8F=EA=A7=80=EA=A6=A6?= =?UTF-8?q?=EA=A6=BF=EA=A6=A7=EA=A6=AE=EA=A6=91=EA=A6=A9=EA=A6=AD=EA=A7=80?= Date: Mon, 27 Mar 2023 18:57:42 +0800 Subject: Clock & table icons --- Home/Default/Card.ui.qml | 50 ++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 42 insertions(+), 8 deletions(-) (limited to 'Home') diff --git a/Home/Default/Card.ui.qml b/Home/Default/Card.ui.qml index c7d4dc8..c1193e1 100644 --- a/Home/Default/Card.ui.qml +++ b/Home/Default/Card.ui.qml @@ -191,21 +191,55 @@ Item { Item { Layout.fillWidth: true - Lbl.FwLight { - id: duration - text: "15h 30m" + RowLayout { anchors { left: parent.left - verticalCenter: parent.verticalCenter + verticalCenter: parent + .verticalCenter + } + + Image { + source: "../../Font-Awesome/svgs/regular/clock.svg" + sourceSize { + width: 15 + height: 15 + } + ColorOverlay { + anchors.fill: parent + source: parent + color: "#d6293e" + } + Layout.rightMargin: 8 + } + + Lbl.FwLight { + text: "15h 30m" } } - Lbl.FwLight { - id: lectures - text: "68 lectures" + RowLayout { anchors { right: parent.right - verticalCenter: parent.verticalCenter + verticalCenter: parent + .verticalCenter + } + + Image { + source: "../../Font-Awesome/svgs/solid/table.svg" + sourceSize { + width: 15 + height: 15 + } + ColorOverlay { + anchors.fill: parent + source: parent + color: "#fd7e14" + } + Layout.rightMargin: 8 + } + + Lbl.FwLight { + text: "68 lectures" } } } -- cgit v1.2.3