diff options
Diffstat (limited to 'HomeDefault.ui.qml')
-rw-r--r-- | HomeDefault.ui.qml | 292 |
1 files changed, 137 insertions, 155 deletions
diff --git a/HomeDefault.ui.qml b/HomeDefault.ui.qml index 86b4ae5..ea619af 100644 --- a/HomeDefault.ui.qml +++ b/HomeDefault.ui.qml @@ -21,187 +21,169 @@ Flickable { right: parent.right } - Item { - implicitHeight: banner.height + counter.height - + popular.height - Layout.fillWidth: true - - GridLayout { - id: banner - columns: width < 992 ? 1 : 2 - rows: width < 992 ? 2 : 1 - anchors { - top: parent.top - topMargin: 48 - left: parent.left - leftMargin: 51.28 - right: parent.right - rightMargin: 51.28 + GridLayout { + id: banner + columns: width < 992 ? 1 : 2 + rows: width < 992 ? 2 : 1 + Layout.topMargin: 48 + Layout.leftMargin: 51.28 + Layout.rightMargin: 51.28 + + ColumnLayout { + + FontLoader { + id: heebo + source: "Heebo/Heebo-Bold.ttf" } - ColumnLayout { - - FontLoader { - id: heebo - source: "Heebo/Heebo-Bold.ttf" + Label { + text: qsTr("Limitless learning at your fingertips") + color: "#24292d" + horizontalAlignment: Text.AlignHCenter + wrapMode: Text.Wrap + Layout.fillWidth: true + font { + family: heebo.name + pixelSize: 24 } + } - Label { - text: qsTr("Limitless learning at your fingertips") - color: "#24292d" - horizontalAlignment: Text.AlignHCenter - wrapMode: Text.Wrap - Layout.fillWidth: true - font { - family: heebo.name - pixelSize: 24 - } - } + FontLoader { + id: roboto + source: doesntEmbed ? "" + : "Roboto/Roboto-Medium.ttf" + } - FontLoader { - id: roboto - source: doesntEmbed ? "" - : "Roboto/Roboto-Medium.ttf" + Label { + text: qsTr("Online learning and teaching marketplace with 5K+ courses & 10M students. Taught by experts to help you acquire new skills.") + color: "#747579" + horizontalAlignment: Text.AlignHCenter + wrapMode: Text.Wrap + Layout.fillWidth: true + font { + family: doesntEmbed + ? "Roboto" + : roboto.name + pixelSize: 19 } + } - Label { - text: qsTr("Online learning and teaching marketplace with 5K+ courses & 10M students. Taught by experts to help you acquire new skills.") - color: "#747579" - horizontalAlignment: Text.AlignHCenter - wrapMode: Text.Wrap - Layout.fillWidth: true + Button { + id: getStarted + Layout.alignment: Qt.AlignHCenter + Layout.leftMargin: 24 + Layout.rightMargin: 24 + Layout.bottomMargin: 25.6 + horizontalPadding: 24 + verticalPadding: 12.8 + contentItem: Text { + color: getStarted.down + ? "#ffffff" + : "#d6293e" + text: qsTr("Get Started") + horizontalAlignment: Text + .AlignHCenter + verticalAlignment: Text + .AlignVCenter font { family: doesntEmbed - ? "Roboto" - : roboto.name - pixelSize: 19 + ? "Roboto" + : roboto.name + pixelSize: 16 + weight: Font.Medium } } - - Button { - id: getStarted - Layout.alignment: Qt.AlignHCenter - Layout.leftMargin: 24 - Layout.rightMargin: 24 - Layout.bottomMargin: 25.6 - horizontalPadding: 24 - verticalPadding: 12.8 - contentItem: Text { - color: getStarted.down - ? "#ffffff" - : "#d6293e" - text: qsTr("Get Started") - horizontalAlignment: Text - .AlignHCenter - verticalAlignment: Text - .AlignVCenter - font { - family: doesntEmbed - ? "Roboto" - : roboto.name - pixelSize: 16 - weight: Font.Medium - } - } - background: Rectangle { - radius: 8 - color: getStarted.down - ? "#d6293e" - : Qt.rgba(.839, .16, .243, .1) - border { - color: getStarted.down ? "#d6293e" : "transparent" - width: 1 - } + background: Rectangle { + radius: 8 + color: getStarted.down + ? "#d6293e" + : Qt.rgba(.839, .16, .243, .1) + border { + color: getStarted.down ? "#d6293e" : "transparent" + width: 1 } } } + } - ColumnLayout { - Layout.topMargin: 48 - Layout.leftMargin: 24 - Layout.rightMargin: 24 + ColumnLayout { + Layout.topMargin: 48 + Layout.leftMargin: 24 + Layout.rightMargin: 24 - Image { - id: image - source: "https://eduport.webestica.com/assets/images/element/07.png" - fillMode: Image.PreserveAspectFit - Layout.fillWidth: true - } + Image { + id: image + source: "https://eduport.webestica.com/assets/images/element/07.png" + fillMode: Image.PreserveAspectFit + 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 + GridView { + id: counter + interactive: false + cellWidth: width < 576 ? width + : width < 1200 ? width / 2 + : width / 4 + cellHeight: 125.6 + Layout.fillWidth: true + Layout.preferredHeight: width < 576 + ? cellHeight * count : width < 1200 ? cellHeight * count / 2 : cellHeight - anchors { - top: banner.bottom - 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" - } + 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" } } + } - SwipeView { - anchors { - top: counter.bottom - left: parent.left - right: parent.right - } - height: popular.height + SwipeView { + Layout.fillWidth: true + Layout.preferredHeight: popular.height - GridView { - id: popular - interactive: false - cellWidth: width < 576 ? width - : width < 768 ? width / 2 - : width < 992 ? width / 3 - : width / 4 - cellHeight: cellWidth * 1.3 - width: parent.width - height: width < 576 - ? cellHeight * count - : width < 768 - ? cellHeight - * (count + count % 2) / 2 - : width < 992 - ? cellHeight - * (count + (count + 1) % 3) / 3 - : cellHeight - * (count + (count + 2) % 4) / 4 - } + GridView { + id: popular + interactive: false + cellWidth: width < 576 ? width + : width < 768 ? width / 2 + : width < 992 ? width / 3 + : width / 4 + cellHeight: cellWidth * 1.3 + width: parent.width + height: width < 576 + ? cellHeight * count + : width < 768 + ? cellHeight + * (count + count % 2) / 2 + : width < 992 + ? cellHeight + * (count + (count + 1) % 3) / 3 + : cellHeight + * (count + (count + 2) % 4) / 4 } } } |