blob: a34cc2c669d372693c757c36161cf03f2da5040f (
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
|
import "root:/widgets"
import "root:/services"
import "root:/config"
import QtQuick
import QtQuick.Layouts
BoxLayout {
id: root
readonly property color colour: Appearance.colours.peach
padding: [Appearance.padding.smaller, 0]
MaterialIcon {
text: "calendar_month"
color: root.colour
Layout.alignment: Layout.Center
}
Label {
horizontalAlignment: Label.AlignHCenter
text: root.vertical ? Time.format("hh\nmm") : Time.format("dd/MM/yy hh:mm")
font.pointSize: Appearance.font.size.smaller
font.family: Appearance.font.family.mono
color: root.colour
Layout.alignment: Layout.Center
}
}
|