blob: bff0110fd9320854332b950a9c84e2d6f4dc9c9c (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
import "../../../../../../Label" as Lbl
import "Instructor"
ColumnLayout {
GridLayout {
rows: width < 671.612 ? 2 : 1
columns: width < 671.612 ? 1 : 2
rowSpacing: 0
columnSpacing: 0
Image {
Layout.fillWidth: true
Layout.maximumHeight: width * 600 / 598
source: "https://eduport.webestica.com/assets/images/instructor/01.jpg"
fillMode: Image.PreserveAspectFit
}
ColumnLayout {
Layout.topMargin: 16
Layout.leftMargin: 20
Layout.rightMargin: 20
Layout.bottomMargin: 16
spacing: 0
Lbl.H3 {
text: qsTr("Louis Ferguson")
}
Label {
Layout.bottomMargin: 8
text: qsTr("Instructor of Marketing")
wrapMode: Label.Wrap
}
/*
GridLayout {
Layout.bottomMargin: 16
ListInlineItem {
}
ListInlineItem {
}
ListInlineItem {
}
ListInlineItem {
}
}
*/
}
}
Lbl.H5 {
Layout.bottomMargin: 16
text: qsTr("About Instructor")
}
Label {
Layout.fillWidth: true
Layout.bottomMargin: 16
text: qsTr("Fulfilled direction use continual set him propriety continued. Saw met applauded favorite deficient engrossed concealed and her. Concluded boy perpetual old supposing. Farther related bed and passage comfort civilly. Dashboard see frankness objection abilities. As hastened oh produced prospect formerly up am. Placing forming nay looking old married few has. Margaret disposed of add screened rendered six say his striking confined. As it so contrasted oh estimating instrument. Size like body someone had. Are conduct viewing boy minutes warrant the expense? Tolerably behavior may admit daughters offending her ask own. Praise effect wishes change way and any wanted.")
wrapMode: Label.Wrap
}
}
|