summaryrefslogtreecommitdiff
path: root/InstructorContent.ui.qml
blob: db0a15d5f0ece1555f3a87b3c4f1bfc6686de76d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15

GridLayout {
	id: instructorContent
	width: instructorContent.width
	height: instructorContent.height

	Image {
		id: instructorImage
		Layout.preferredWidth: 300
		Layout.preferredHeight: 300
		source: "https://eduport.webestica.com/assets/images/instructor/01.jpg"
		fillMode: Image.PreserveAspectFit
		Layout.margins: 8
	}
	ColumnLayout {
		id: instructoryBody
		spacing: 8
		Layout.margins: 8
		
		Label {
			id: instructorFullname
			color: "#000000"
			text: qsTr("Instructor Fullname")
			font.styleName: "Bold"
			font.pointSize: 32
			font.family: "roboto"

		}
		Label {
			id: instructorTitle
			color: "#66000000"
			text: qsTr("Instructor of Marketing")
			font.styleName: "Regular"
			font.pointSize: 16
			font.family: "roboto"

		}
	}
	
}