|
|
|
|
@ -38,14 +38,14 @@ struct UmpireView: View { |
|
|
|
|
NavigationLink { |
|
|
|
|
SubscriptionView() |
|
|
|
|
} label: { |
|
|
|
|
Label("Les offres", systemImage: "bookmark.circle.fill") |
|
|
|
|
Label("Les offres", systemImage: "bookmark.fill") |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
NavigationLink { |
|
|
|
|
MainUserView() |
|
|
|
|
} label: { |
|
|
|
|
Label("Mon compte", systemImage: "person.circle.fill") |
|
|
|
|
Label("Mon compte", systemImage: "person.fill") |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
let currentPlayerData = dataStore.user.currentPlayerData() |
|
|
|
|
@ -57,7 +57,7 @@ struct UmpireView: View { |
|
|
|
|
ImportedPlayerView(player: currentPlayerData) |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
RowButtonView("Ma fiche joueur", systemImage: "person.bust.circle.fill") { |
|
|
|
|
RowButtonView("Ma fiche joueur", systemImage: "person.bust") { |
|
|
|
|
presentSearchView = true |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
@ -87,7 +87,7 @@ struct UmpireView: View { |
|
|
|
|
LabeledContent { |
|
|
|
|
Text(dataStore.user.clubs.count.formatted()) |
|
|
|
|
} label: { |
|
|
|
|
Label("Mes clubs", systemImage: "house.and.flag.circle.fill") |
|
|
|
|
Label("Mes clubs", systemImage: "house.and.flag") |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} footer: { |
|
|
|
|
|