Increased count font size
This commit is contained in:
parent
9f989ac07b
commit
f51e1b511e
@ -25,7 +25,7 @@ struct StarredWidgetView : View {
|
|||||||
VStack(alignment: .leading) {
|
VStack(alignment: .leading) {
|
||||||
starredImage
|
starredImage
|
||||||
Spacer()
|
Spacer()
|
||||||
Text(L10n.localizedCount(entry.widgetData.currentStarredCount)).bold().font(Font.system(.footnote, design: .rounded)).minimumScaleFactor(0.5).lineLimit(1)
|
Text(L10n.localizedCount(entry.widgetData.currentStarredCount)).bold().font(Font.system(.callout, design: .rounded)).minimumScaleFactor(0.5).lineLimit(1)
|
||||||
Text(L10n.starred.lowercased()).bold().font(Font.system(.footnote).lowercaseSmallCaps()).minimumScaleFactor(0.5).lineLimit(1)
|
Text(L10n.starred.lowercased()).bold().font(Font.system(.footnote).lowercaseSmallCaps()).minimumScaleFactor(0.5).lineLimit(1)
|
||||||
}
|
}
|
||||||
.frame(width: metrics.size.width * 0.15)
|
.frame(width: metrics.size.width * 0.15)
|
||||||
|
@ -25,12 +25,13 @@ struct TodayWidgetView : View {
|
|||||||
VStack(alignment: .leading) {
|
VStack(alignment: .leading) {
|
||||||
todayImage
|
todayImage
|
||||||
Spacer()
|
Spacer()
|
||||||
Text(L10n.localizedCount(entry.widgetData.currentTodayCount)).bold().font(Font.system(.footnote, design: .rounded)).minimumScaleFactor(0.5).lineLimit(1)
|
Text(L10n.localizedCount(entry.widgetData.currentTodayCount)).bold().font(Font.system(.callout, design: .rounded)).minimumScaleFactor(0.5).lineLimit(1)
|
||||||
Text(L10n.today.lowercased()).bold().font(Font.system(.footnote).lowercaseSmallCaps()).minimumScaleFactor(0.5).lineLimit(1)
|
Text(L10n.today.lowercased()).bold().font(Font.system(.footnote).lowercaseSmallCaps()).minimumScaleFactor(0.5).lineLimit(1)
|
||||||
}
|
}
|
||||||
.frame(width: metrics.size.width * 0.15)
|
.frame(width: metrics.size.width * 0.15)
|
||||||
.padding(.trailing, 4)
|
.padding(.trailing, 4)
|
||||||
|
|
||||||
|
|
||||||
VStack(alignment:.leading, spacing: 0) {
|
VStack(alignment:.leading, spacing: 0) {
|
||||||
ForEach(0..<maxCount(), content: { i in
|
ForEach(0..<maxCount(), content: { i in
|
||||||
if i != 0 {
|
if i != 0 {
|
||||||
|
@ -25,7 +25,7 @@ struct UnreadWidgetView : View {
|
|||||||
VStack(alignment: .leading) {
|
VStack(alignment: .leading) {
|
||||||
unreadImage
|
unreadImage
|
||||||
Spacer()
|
Spacer()
|
||||||
Text(L10n.localizedCount(entry.widgetData.currentUnreadCount)).bold().font(Font.system(.footnote, design: .rounded)).minimumScaleFactor(0.5).lineLimit(1)
|
Text(L10n.localizedCount(entry.widgetData.currentUnreadCount)).bold().font(Font.system(.callout, design: .rounded)).minimumScaleFactor(0.5).lineLimit(1)
|
||||||
Text(L10n.unread.lowercased()).bold().font(Font.system(.footnote).lowercaseSmallCaps()).minimumScaleFactor(0.5).lineLimit(1)
|
Text(L10n.unread.lowercased()).bold().font(Font.system(.footnote).lowercaseSmallCaps()).minimumScaleFactor(0.5).lineLimit(1)
|
||||||
}
|
}
|
||||||
.frame(width: metrics.size.width * 0.15)
|
.frame(width: metrics.size.width * 0.15)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user