diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-04-12 22:49:29 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-04-12 22:49:29 +0800 |
commit | 9a60deb26c6db9dec64b4814fb75ac39f04c5b27 (patch) | |
tree | 1dc0ec2f7873ae371430dbe7bd493b530338aa85 /Course/Detail/Classic/Content/Main/TabContents/Instructor.ui.qml | |
parent | afb889bfe7b951089b569dca503ac2e4e4067187 (diff) |
Heading attached property is used instead of Hx
Diffstat (limited to 'Course/Detail/Classic/Content/Main/TabContents/Instructor.ui.qml')
-rw-r--r-- | Course/Detail/Classic/Content/Main/TabContents/Instructor.ui.qml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Course/Detail/Classic/Content/Main/TabContents/Instructor.ui.qml b/Course/Detail/Classic/Content/Main/TabContents/Instructor.ui.qml index bff0110..42e2d97 100644 --- a/Course/Detail/Classic/Content/Main/TabContents/Instructor.ui.qml +++ b/Course/Detail/Classic/Content/Main/TabContents/Instructor.ui.qml @@ -1,7 +1,7 @@ import QtQuick 2.15 import QtQuick.Controls 2.15 import QtQuick.Layouts 1.15 -import "../../../../../../Label" as Lbl +import Bootstrap 5.3 import "Instructor" ColumnLayout { @@ -26,8 +26,10 @@ ColumnLayout { Layout.bottomMargin: 16 spacing: 0 - Lbl.H3 { + Label { text: qsTr("Louis Ferguson") + wrapMode: Label.Wrap + Bootstrap.heading: 3 } Label { @@ -55,9 +57,11 @@ ColumnLayout { } } - Lbl.H5 { + Label { Layout.bottomMargin: 16 text: qsTr("About Instructor") + wrapMode: Label.Wrap + Bootstrap.heading: 5 } Label { |