blob: e6e7318d2e16e179b4b999bf43ad69f7212ac13e (
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
|
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
Item {
property alias area: area
Rectangle {
color: bgColor
radius: 8
anchors {
top: parent.top
topMargin: 25.6
left: parent.left
leftMargin: 12.8
right: parent.right
rightMargin: 12.8
bottom: parent.bottom
}
RowLayout {
anchors {
top: parent.top
topMargin: 25.6
left: parent.left
leftMargin: 25.6
right: parent.right
rightMargin: 25.6
bottom: parent.bottom
bottomMargin: 25.6
}
Image {
source: icon
sourceSize.height: parent.height
}
ColumnLayout {
FontLoader {
id: bold
source: "Heebo/Heebo-Bold.ttf"
}
Label {
text: count
font {
family: bold.name
pixelSize: 21
}
}
FontLoader {
id: medium
source: "Heebo/Heebo-Bold.ttf"
}
Label {
text: title
font {
family: medium.name
pixelSize: 15
}
}
}
}
MouseArea {
id: area
anchors.fill: parent
}
}
}
|