From fd06a0bcc8c13d7b4fe3760e25d60c68a4f07305 Mon Sep 17 00:00:00 2001 From: Laurent Date: Fri, 24 May 2024 17:43:11 +0200 Subject: [PATCH] Improve labels --- PadelClub/Views/Team/Components/TeamHeaderView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PadelClub/Views/Team/Components/TeamHeaderView.swift b/PadelClub/Views/Team/Components/TeamHeaderView.swift index 700ec47..d6a0dbf 100644 --- a/PadelClub/Views/Team/Components/TeamHeaderView.swift +++ b/PadelClub/Views/Team/Components/TeamHeaderView.swift @@ -17,17 +17,17 @@ struct TeamHeaderView: View { } private func _teamHeaderView(_ team: TeamRegistration, teamIndex: Int?) -> some View { - HStack { + HStack(spacing: 16.0) { if let teamIndex { VStack(alignment: .leading, spacing: 0) { - Text("rang").font(.caption) + Text("Rang").font(.caption) Text("#" + (teamIndex + 1).formatted()) } } if team.unsortedPlayers().isEmpty == false { VStack(alignment: .leading, spacing: 0) { - Text("poids").font(.caption) + Text("Poids").font(.caption) Text(team.weight.formatted()) } }