diff --git a/SodaLive/Sources/Main/Home/BottomTabView.swift b/SodaLive/Sources/Main/Home/BottomTabView.swift index 765fab8..442121c 100644 --- a/SodaLive/Sources/Main/Home/BottomTabView.swift +++ b/SodaLive/Sources/Main/Home/BottomTabView.swift @@ -27,11 +27,7 @@ struct BottomTabView: View { "ic_home_selected" : "ic_home" }, - fontName: { - currentTab == .home ? - Font.bold.rawValue : - Font.medium.rawValue - }, + fontWeight: { currentTab == .home ? .bold : .medium }, color: { currentTab == .home ? Color.button : @@ -52,11 +48,7 @@ struct BottomTabView: View { "ic_live_selected" : "ic_live" }, - fontName: { - currentTab == .live ? - Font.bold.rawValue : - Font.medium.rawValue - }, + fontWeight: { currentTab == .live ? .bold : .medium }, color: { currentTab == .live ? Color.button : @@ -77,11 +69,7 @@ struct BottomTabView: View { "ic_chat_selected" : "ic_chat" }, - fontName: { - currentTab == .chat ? - Font.bold.rawValue : - Font.medium.rawValue - }, + fontWeight: { currentTab == .chat ? .bold : .medium }, color: { currentTab == .chat ? Color.button : @@ -102,11 +90,7 @@ struct BottomTabView: View { "ic_my_selected" : "ic_my" }, - fontName: { - currentTab == .mypage ? - Font.bold.rawValue : - Font.medium.rawValue - }, + fontWeight: { currentTab == .mypage ? .bold : .medium }, color: { currentTab == .mypage ? Color.button :