summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-03-23 10:58:11 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-03-23 10:58:11 +0800
commit2e57ff6808813338ff373155df37d1c5cd09e797 (patch)
treefb42dba211f245cffe7a2e2636481ea5d37bdabb
parent40c51ce369f77d89ae68b7e207499361344f6b1f (diff)
Not used any more
-rw-r--r--MostPopularWithTab.ui.qml82
1 files changed, 0 insertions, 82 deletions
diff --git a/MostPopularWithTab.ui.qml b/MostPopularWithTab.ui.qml
deleted file mode 100644
index e9be112..0000000
--- a/MostPopularWithTab.ui.qml
+++ /dev/null
@@ -1,82 +0,0 @@
-import QtQuick 2.15
-import QtQuick.Controls 2.15
-import QtQuick.Layouts 1.15
-
-ColumnLayout {
- spacing: 8
- FontLoader {
- id: roboto
- source: doesntEmbed ? ""
- : "Roboto/Roboto-Medium.ttf"
- }
-
- Label {
- text: qsTr("Most Popular Courses")
- color: "#24292d"
- horizontalAlignment: Text.AlignHCenter
- wrapMode: Text.Wrap
- Layout.fillWidth: true
- font {
- family: doesntEmbed
- ? "Roboto"
- : roboto.name
- pointSize: 44
- }
- }
-
- Label {
- text: qsTr("Choose from hundreds of courses from specialist organizations")
- color: "#747579"
- horizontalAlignment: Text.AlignHCenter
- wrapMode: Text.Wrap
- Layout.fillWidth: true
- font {
- family: doesntEmbed
- ? "Roboto"
- : roboto.name
- pointSize: 14
- }
- }
- TabBar {
- background: Rectangle{
- color: "#1a066ac9"
- radius: 8
- }
- Layout.fillWidth: true
- implicitHeight: 58
- Layout.margins: 16
- padding: 16
- TabButton {
- text: qsTr("First")
- anchors.verticalCenter: parent.verticalCenter
- Layout.fillWidth: true
- Layout.leftMargin: 16
- background: Rectangle {
- radius: 8
- }
- }
- TabButton {
- text: qsTr("Second")
- anchors.verticalCenter: parent.verticalCenter
- Layout.fillWidth: true
- background: Rectangle {
- radius: 8
- }
-
- }
- TabButton {
- text: qsTr("Third")
- anchors.verticalCenter: parent.verticalCenter
- Layout.fillWidth: true
- background: Rectangle {
- radius: 8
- }
- contentItem: Text {
- color: "#000000"
- text: "Third"
- horizontalAlignment: Text.AlignHCenter
- verticalAlignment: Text.AlignVCenter
- }
- }
- }
-}