Skip to content

Commit

Permalink
[picmatch] Change template BeMatch to TenMatch
Browse files Browse the repository at this point in the history
  • Loading branch information
ren-suke committed Aug 20, 2024
1 parent f9e178f commit 69a3c75
Show file tree
Hide file tree
Showing 459 changed files with 5,393 additions and 18,479 deletions.
630 changes: 324 additions & 306 deletions Packages/PicMatch/Package.swift

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@ public struct AchievementHistoryWidgetView: View {
VStack(alignment: .leading, spacing: 0) {
Label("HISTORY", systemImage: "calendar")
.foregroundStyle(Color.secondary)
.font(.system(.headline, weight: .semibold))
.font(.system(.headline, design: .rounded, weight: .semibold))

HStack(alignment: .bottom, spacing: 8) {
Text(viewStore.displayDaysAgo)
.font(.system(size: 64, weight: .semibold))
.font(.system(size: 64, weight: .semibold, design: .rounded))

Text("days.", bundle: .module)
.font(.system(size: 32, weight: .semibold))
.font(.system(size: 32, weight: .semibold, design: .rounded))
.padding(.bottom, 8)
}

Text(viewStore.displayCreationDate)
.foregroundStyle(Color.secondary)
.font(.system(.headline, weight: .semibold))
.font(.system(.headline, design: .rounded, weight: .semibold))
}
.frame(maxWidth: .infinity, alignment: .leading)
.padding(.vertical, 16)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ struct AchievementRatingWidgetView: View {
VStack(alignment: .leading, spacing: 8) {
Text("RATING", bundle: .module)
.foregroundStyle(Color.secondary)
.font(.system(.headline, weight: .semibold))
.font(.system(.headline, design: .rounded, weight: .semibold))

HStack(spacing: 8) {
ForEach(0 ..< 5) { _ in
Expand All @@ -24,7 +24,7 @@ struct AchievementRatingWidgetView: View {

Text("Count of swipes across Japan", bundle: .module)
.foregroundStyle(Color.secondary)
.font(.system(.headline, weight: .semibold))
.font(.system(.headline, design: .rounded, weight: .semibold))
}
.frame(maxWidth: .infinity, alignment: .leading)
.padding(.vertical, 16)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ struct AchievementWidgetView: View {
VStack(alignment: .leading, spacing: 0) {
Label(titleKey, systemImage: systemImage)
.foregroundStyle(Color.secondary)
.font(.system(.headline, weight: .semibold))
.font(.system(.headline, design: .rounded, weight: .semibold))

Text(displayCount)
.font(.system(size: 64, weight: .semibold))
.font(.system(size: 64, weight: .semibold, design: .rounded))

Text(text)
.foregroundStyle(Color.secondary)
.font(.system(.headline, weight: .semibold))
.font(.system(.headline, design: .rounded, weight: .semibold))
}
.frame(maxWidth: .infinity, alignment: .leading)
.padding(.vertical, 16)
Expand Down
Loading

0 comments on commit 69a3c75

Please sign in to comment.