summaryrefslogtreecommitdiff
path: root/Home
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-03-27 18:57:42 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-03-27 18:57:42 +0800
commita17109c81602d54ed875d3893d2138dacec22e30 (patch)
tree6966fc8ca15d17719002fcb83ab73cf56f8ec4de /Home
parent403235d380523c9711d5871566b312cd3cff08e9 (diff)
Clock & table icons
Diffstat (limited to 'Home')
-rw-r--r--Home/Default/Card.ui.qml50
1 files changed, 42 insertions, 8 deletions
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"
}
}
}