diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2022-11-15 15:20:15 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2022-11-15 15:20:15 +0800 |
commit | 41c89d26f4f56e1d1bdbfab53ba209f80887d60e (patch) | |
tree | 8a7aa9261c6e8cd91e3710a176bed5255def4873 /DefaultHome.ui.qml | |
parent | ed0a68ec9091819872127b1fd74f52bde37165f0 (diff) |
Rename Default Home file
Diffstat (limited to 'DefaultHome.ui.qml')
-rw-r--r-- | DefaultHome.ui.qml | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/DefaultHome.ui.qml b/DefaultHome.ui.qml new file mode 100644 index 0000000..59d9735 --- /dev/null +++ b/DefaultHome.ui.qml @@ -0,0 +1,84 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 + +Item { + property alias popularCourseTabsContent: popularCourseTabsContent + + GridView { + id: counter + model: ListModel { + ListElement { + count: "10K" + bgColor: "#26f7c32e" + } + ListElement { + count: "200+" + bgColor: "#1a1d3b53" + } + ListElement { + count: "60K+" + bgColor: "#1a6f42c1" + } + ListElement { + count: "6K+" + bgColor: "#1a17a2b8" + } + } + + delegate: Item { + width: counter.cellWidth + height: 125.6 + Rectangle { + color: bgColor + radius: 8 + anchors { + top: parent.top + topMargin: 25.6 + left: parent.left + leftMargin: 12.8 + right: parent.right + rightMargin: 12.8 + bottom: parent.bottom + } + + FontLoader { + id: heebo + name: "Heebo" + source: "Heebo/Heebo-Bold.ttf" + } + + Label { + id: label + text: count + font { + family: heebo.name + pixelSize: 21 + } + } + } + } + + cellWidth: width < 576 ? width : width < 768 ? width / 2 + : width < 992 ? width / 3 : width / 4 + cellHeight: cellWidth * 1.3 + anchors { + top: parent.top + left: parent.left + right: parent.right + } + height: 100 + } + + GridView { + id: popularCourseTabsContent + cellWidth: width < 576 ? width : width < 768 ? width / 2 + : width < 992 ? width / 3 : width / 4 + cellHeight: cellWidth * 1.3 + anchors { + left: parent.left + right: parent.right + bottom: parent.bottom + } + height: parent.height - 100 + } +} |