Display month and year on calendar

This commit is contained in:
Cru Scanlan
2025-12-04 22:27:47 +10:00
parent 6612ee7df9
commit 144ede980f
+12
View File
@@ -51,6 +51,18 @@ NBox {
Layout.fillWidth: true
spacing: Style.marginS
Item {
Layout.preferredWidth: Style.marginS
}
NText {
text: I18n.locale.monthName(root.calendarMonth, Locale.LongFormat).toUpperCase() + " " + root.calendarYear
pointSize: Style.fontSizeM
font.weight: Style.fontWeightBold
color: Color.white
}
NDivider {
Layout.fillWidth: true
}