diff --git a/IceGlass-iOS/Views/GameRow.swift b/IceGlass-iOS/Views/GameRow.swift index 9e18e26..f1442e9 100644 --- a/IceGlass-iOS/Views/GameRow.swift +++ b/IceGlass-iOS/Views/GameRow.swift @@ -47,19 +47,13 @@ struct GameRow: View { .lineLimit(1) .fixedSize() - if showScore { - Text(scoreText) - .font(.title3.monospacedDigit()) - .fontWeight(.bold) - .foregroundStyle(.primary) - .lineLimit(1) - .fixedSize() - .padding(.horizontal, 2) - } else { - Text("@") - .font(.title3) - .foregroundStyle(.tertiary) - } + Text(showScore ? scoreText : "- : -") + .font(.title3.monospacedDigit()) + .fontWeight(.bold) + .foregroundStyle(.secondary) + .lineLimit(1) + .fixedSize() + .padding(.horizontal, 2) Text(game.homeTeam.abbrev) .font(.title3.monospaced()) @@ -108,7 +102,7 @@ struct GameRow: View { private var scoreText: String { let a = game.awayTeam.score ?? 0 let h = game.homeTeam.score ?? 0 - return "\(a)–\(h)" + return "\(a) : \(h)" } private func open() {