summaryrefslogtreecommitdiff
path: root/DefaultHomeFlickable.ui.qml
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-02-13 20:41:27 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-02-13 20:41:27 +0800
commit29b5bafe16ba82773da97c77951309d585bc9a6b (patch)
tree57978d3e0196d57a8f31f515d6d93be5bfb21916 /DefaultHomeFlickable.ui.qml
parent896960e9a507c671f685b0536a10d7dc554c9451 (diff)
Shorten names
Use something like import "qeduport" as Eduport
Diffstat (limited to 'DefaultHomeFlickable.ui.qml')
-rw-r--r--DefaultHomeFlickable.ui.qml92
1 files changed, 0 insertions, 92 deletions
diff --git a/DefaultHomeFlickable.ui.qml b/DefaultHomeFlickable.ui.qml
deleted file mode 100644
index 8266ad5..0000000
--- a/DefaultHomeFlickable.ui.qml
+++ /dev/null
@@ -1,92 +0,0 @@
-import QtQuick 2.15
-import QtQuick.Controls 2.15
-import QtQuick.Layouts 1.15
-
-Flickable {
- property alias header: header
- property alias counter: counter
- property alias popular: popular
- contentHeight: body.height
-
- ColumnLayout {
- id: body
- anchors {
- top: parent.top
- left: parent.left
- right: parent.right
- }
-
- HeaderToolBar {
- id: header
- Layout.fillWidth: true
- }
-
- Item {
- implicitHeight: counter.height + popular.height
- Layout.fillWidth: true
-
- GridView {
- id: counter
- interactive: false
- cellWidth: width < 576 ? width
- : width < 1200 ? width / 2
- : width / 4
- cellHeight: 125.6
- height: width < 576 ? cellHeight * count
- : width < 1200 ? cellHeight * count / 2
- : cellHeight
- anchors {
- top: parent.top
- left: parent.left
- right: parent.right
- }
-
- model: ListModel {
- ListElement {
- icon: "Font-Awesome/svgs/solid/tv.svg"
- count: "10K"
- title: qsTr("Online Courses")
- bgColor: "#26f7c32e"
- }
- ListElement {
- icon: "Font-Awesome/svgs/solid/user-tie.svg"
- count: "200+"
- title: qsTr("Expert Tutors")
- bgColor: "#1a1d3b53"
- }
- ListElement {
- icon: "Font-Awesome/svgs/solid/user-graduate.svg"
- count: "60K+"
- title: qsTr("Online Students")
- bgColor: "#1a6f42c1"
- }
- ListElement {
- icon: "Bootstrap/icons/patch-check-fill.svg"
- count: "6K+"
- title: qsTr("Certified Courses")
- bgColor: "#1a17a2b8"
- }
- }
- }
-
- GridView {
- id: popular
- interactive: false
- cellWidth: width < 576 ? width
- : width < 768 ? width / 2
- : width < 992 ? width / 3
- : width / 4
- cellHeight: cellWidth * 1.3
- height: width < 576 ? cellHeight * count
- : width < 768 ? cellHeight * count / 2
- : width < 992 ? cellHeight * count / 3
- : cellHeight * count / 4
- anchors {
- top: counter.bottom
- left: parent.left
- right: parent.right
- }
- }
- }
- }
-}