blob: b2b0759dc040a99f64244b6b968d4be1d86eaf99 (
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
|
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
import Eduport 1.4
Item {
Rectangle {
color: bgColor
radius: 8
anchors {
fill: parent
topMargin: 25.6
leftMargin: 12.8
rightMargin: 12.8
}
Item {
anchors {
fill: parent
margins: 25.6
}
Image {
id: image
source: icon
sourceSize.height: column.height * 3 / 4
fillMode: Image.PreserveAspectFit
x: (parent.width - (width + column.width + 25.6)) / 2
anchors.verticalCenter: parent.verticalCenter
}
ColumnLayout {
id: column
spacing: 0
anchors {
left: image.right
leftMargin: 25.6
}
Label {
text: count
font {
family: Eduport.hFont.family
weight: Eduport.hFont.weight
pointSize: 20.1
+ .00075 * parent.width
}
Layout.fillWidth: true
}
Label {
text: title
font {
family: Eduport.fwNormalFont
.family
weight: Eduport.fwNormalFont
.weight
pointSize: h6FontSize
}
Layout.fillWidth: true
}
}
}
}
}
|