summaryrefslogtreecommitdiff
path: root/InstructiorCardItem.ui.qml
diff options
context:
space:
mode:
authorAnatasof Wirapraja <anatasof.wirapraja@gmail.com>2023-03-01 11:39:44 +0700
committerAnatasof Wirapraja <anatasof.wirapraja@gmail.com>2023-03-01 11:39:44 +0700
commitabfc4afa2516261ec0889327f1cafa6004e5bb78 (patch)
tree26cfa12a61762c32de84308785d1ea677ada82c2 /InstructiorCardItem.ui.qml
parent89cca6fe8f4d0bd93891d19031aa8b0d19a8e02f (diff)
InstructorCardItem.ui.qml done
Diffstat (limited to 'InstructiorCardItem.ui.qml')
-rw-r--r--InstructiorCardItem.ui.qml58
1 files changed, 55 insertions, 3 deletions
diff --git a/InstructiorCardItem.ui.qml b/InstructiorCardItem.ui.qml
index 0add453..1f59ba3 100644
--- a/InstructiorCardItem.ui.qml
+++ b/InstructiorCardItem.ui.qml
@@ -3,10 +3,11 @@ import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
import QtGraphicalEffects 1.12
-Item {
-
+RowLayout {
+ id: instructorCard
+ spacing: 0
height: instructorCardAvatar.height
- width: instructorCardAvatar.width
+ width: instructorCardAvatar.width + instructorCardBody.width
RowLayout{
id: instructorCardAvatar
@@ -31,4 +32,55 @@ Item {
maskSource: instructorThumbnail
}
}
+ ColumnLayout {
+ id: instructorCardBody
+ Layout.preferredWidth: 360
+ Layout.minimumWidth: 360
+ Layout.alignment: Qt.AlignLeft | Qt.AlignTop
+ spacing: 0
+ Label{
+ id: courseTitle
+ color: "#000000"
+ text: "Instructor name"
+ font.pointSize: 21
+ font.family: "roboto"
+ font.styleName: "Medium"
+ Layout.fillWidth: true
+ Layout.rightMargin: 8
+ Layout.leftMargin: 8
+ Layout.topMargin: 8
+ }
+ Label{
+ id: instructorTitle
+ color: "#4d000000"
+ text: "Instructor title"
+ font.pointSize: 12
+ font.family: "roboto"
+ font.styleName: "Regular"
+ Layout.fillWidth: true
+ Layout.margins:8
+ }
+ Label{
+ id: insturctorCardContent
+ color: "#4d000000"
+ text: "Passage its ten led hearted removal cordial. Preference any astonished unreserved Mrs."
+ wrapMode: Text.WordWrap
+ font.pointSize: 12
+ font.family: "roboto"
+ font.styleName: "Regular"
+ Layout.fillWidth: true
+ Layout.margins:8
+ }
+
+ Label{
+ id: instructorCategory
+ color: "#fd7e14"
+ text: "Instructor title"
+ font.pointSize: 16
+ font.family: "roboto"
+ font.styleName: "Medium"
+ Layout.fillWidth: true
+ Layout.margins:8
+ }
+ }
} \ No newline at end of file