blob: 3f1ea8a62b737e99895cd752369d46478b8f4766 (
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
|
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
import QtGraphicalEffects 1.15
import Bootstrap 5.3
import Eduport 1.4
import "../../Button"
import "../../DropShadow"
ColumnLayout {
id: mainContent
spacing: 16
Label {
id: title
text: "HTML and CSS: Design and Build Websites (Paperback)"
wrapMode: Label.Wrap
Bootstrap.heading: 1
Layout.maximumWidth: parent.width
}
RowLayout {
id: rating
spacing: 0
Label {
id: ratingScore
text: "4.5"
Bootstrap.heading: 2
}
ColumnLayout {
id: ratingInformation
Layout.leftMargin: 16
Image {
source: "../../Font-Awesome/svgs/solid/star.svg"
sourceSize.height: 14
sourceSize.width: 14
fillMode: Image.PreserveAspectFit
}
Label {
text: "Reviews from our buyers"
wrapMode: Label.Wrap
}
}
}
RowLayout {
Label {
text: "checkable radio will be here"
}
}
Label {
text: "Description"
Bootstrap.heading: 4
}
Label {
text: "Satisfied conveying a dependent contented he gentleman agreeable do be. Warrant private blushes removed an in equally totally if. Delivered dejection necessary objection do Mr prevailed. Mr feeling does chiefly cordial in do. <br><br>We focus a great deal on the understanding of behavioral psychology and influence triggers which are crucial for becoming a well-rounded Digital Marketer. We understand that theory is important to build a solid foundation, we understand that theory alone isn't going to get the job done so that's why this course is packed with practical hands-on examples that you can follow step by step."
wrapMode: Label.Wrap
Layout.maximumWidth: parent.width
}
RowLayout {
Label {
text: "Additional info with list group will be here"
}
}
Label {
text: "Crucial for becoming a well-rounded Digital Marketer. We understand that theory is important to build a solid foundation, we understand that theory alone isn't going to get the job done so that's why this course is packed with practical hands-on examples that you can follow step by step."
wrapMode: Label.Wrap
Layout.maximumWidth: parent.width
}
}
|