blob: 5e40de12c9aff60bbe22fb59f7e9f72b3169b4db (
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
|
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
import QtGraphicalEffects 1.15
Flickable {
id: flickable
property alias detailImage: image
property alias detailPrice: price
property alias detailOriginalPrice: originalPrice
property alias detailDiscount: discount
property alias detailTime: time
property alias detailTrial: trial
property alias detailBuy: buy
contentHeight: body.height
ColumnLayout {
id: body
anchors {
top: parent.top
left: parent.left
right: parent.right
}
HeaderToolBar {
Layout.fillWidth: true
}
Item {
Layout.fillWidth: true
implicitHeight: width * 1.2
DropShadow {
source: rectangle
color: Qt.rgba(.113, .227, .325, .15)
anchors.fill: rectangle
}
Rectangle {
id: rectangle
radius: 10
anchors {
top: parent.top
topMargin: 25.6
left: parent.left
leftMargin: 12.8
right: parent.right
rightMargin: 12.8
bottom: parent.bottom
}
Image {
id: image
source: "Darapsa.svg"
sourceSize {
width: parent.width - 16
height: parent.width * 3 / 4
}
width: sourceSize.width
height: sourceSize.height
anchors {
top: parent.top
topMargin: 8
horizontalCenter: parent.horizontalCenter
}
layer.enabled: true
layer.effect: OpacityMask {
maskSource: Rectangle {
width: image.width
height: image.height
radius: 10
}
}
}
ColumnLayout {
width: parent.width - 16
anchors {
top: image.bottom
horizontalCenter: parent.horizontalCenter
bottom: parent.bottom
bottomMargin: 8
}
RowLayout {
Layout.topMargin: 16
Layout.bottomMargin: 16
ColumnLayout {
RowLayout {
Label {
id: price
text: "$150"
font.pixelSize: 21
}
Label {
id: originalPrice
text: "$350"
font.pixelSize: 15
font.strikeout: true
}
Label {
id: discount
text: qsTr("60% off")
font.pixelSize: 14
}
}
RowLayout {
id: time
Label {
text: qsTr("5 days left at this price")
font.pixelSize: 15
}
}
}
}
GridLayout {
columns: flickable.width < 378 ? 1 : 2
rows: flickable.width < 378 ? 2 : 1
Layout.bottomMargin: 16
Button {
id: trial
text: qsTr("Free trial")
contentItem: Text {
text: trial.text
font.pixelSize: 15
color: trial.down ? "#ffffff"
: "#066ac9"
}
background: Rectangle {
color: trial.down ? "#066ac9"
: "#ffffff"
border.color: "#066ac9"
radius: 8
}
}
Button {
id: buy
text: qsTr("Buy course")
contentItem: Text {
text: buy.text
font.pixelSize: 15
color: "#ffffff"
}
background: Rectangle {
color: buy.down ? "#0aa073"
: "#0cbc87"
border.color: buy.down
? "#0a966c" : "#0cbc87"
radius: 8
}
}
}
}
}
}
}
}
|