summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MostPopularWithTab.ui.qml82
1 files changed, 82 insertions, 0 deletions
diff --git a/MostPopularWithTab.ui.qml b/MostPopularWithTab.ui.qml
new file mode 100644
index 0000000..e9be112
--- /dev/null
+++ b/MostPopularWithTab.ui.qml
@@ -0,0 +1,82 @@
+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
+ }
+ }
+ }
+}