diff options
-rw-r--r-- | HomeDefault.ui.qml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/HomeDefault.ui.qml b/HomeDefault.ui.qml index 24078b8..0cafbf0 100644 --- a/HomeDefault.ui.qml +++ b/HomeDefault.ui.qml @@ -164,6 +164,39 @@ Flickable { } } + ColumnLayout { + Layout.leftMargin: 15 + Layout.rightMargin: 15 + Layout.bottomMargin: 25.6 + + Label { + text: qsTr("Most Popular Courses") + color: "#24292d" + horizontalAlignment: Text.AlignHCenter + wrapMode: Text.Wrap + Layout.fillWidth: true + Layout.bottomMargin: 8 + 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 + } + } + } + SwipeView { Layout.fillWidth: true Layout.preferredHeight: popular.height |