// // Menu.swift // AllIn // // Created by Emre on 21/09/2023. // import SwiftUI import DependencyInjection struct Menu: View { @Inject var authService: IAuthService let parameters: [(String, String, String, String)] = [ ("videoGameImage", String(localized: "drawer_create_a_bet"), String(localized: "drawer_create_a_bet_subtitle"), "CreationBet"), ("eyesImage", String(localized: "drawer_bet_history"), String(localized: "drawer_bet_history_subtitle"),"Historic"), ("friendsImage", String(localized: "drawer_friends"), String(localized: "drawer_friends_subtitle"), "Friends"), ("moneyImage", String(localized: "drawer_public_bets"), String(localized: "drawer_public_bets_subtitle"), "Bet"), ("rankingImage", String(localized: "drawer_ranking"), String(localized: "drawer_ranking_subtitle"), "Ranking"), ("eyesImage", String(localized: "drawer_current_bets"), String(localized: "drawer_current_bets_subtitle"), "Current") ] var body: some View { VStack(alignment: .leading, spacing: 10) { HStack() { Spacer() VStack(){ Image("defaultUserImage") .resizable() .scaledToFit() .frame(width: 100, height: 100) .cornerRadius(180) Text(AppStateContainer.shared.user?.username.capitalized ?? "") .fontWeight(.medium) .font(.system(size: 17)) .foregroundColor(.white) } Spacer() } .padding(.bottom, 10) HStack(spacing: 30) { Spacer() VStack(){ Text("114") .fontWeight(.heavy) .font(.system(size: 15)) .foregroundColor(.white) Text(String(localized: "drawer_bets")) .fontWeight(.regular) .font(.system(size: 12)) .foregroundColor(AllInColors.grey600Color) } VStack(){ Text("343") .fontWeight(.heavy) .font(.system(size: 15)) .foregroundColor(.white) Text(String(localized: "drawer_best_win")) .fontWeight(.regular) .font(.system(size: 12)) .foregroundColor(AllInColors.grey600Color) } VStack(){ Text("5") .fontWeight(.heavy) .font(.system(size: 15)) .foregroundColor(.white) Text(String(localized: "drawer_nb_friends")) .fontWeight(.regular) .font(.system(size: 12)) .foregroundColor(AllInColors.grey600Color) } Spacer() } .padding(.bottom, 15) ForEach(0..