From 5a344956e3c950bb8fbb858d437ae6edfcfbf77e Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Fri, 23 Jan 2026 02:45:36 +0900 Subject: [PATCH] =?UTF-8?q?KoreanFontModifier=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Sources/Main/Home/BottomTabView.swift | 24 ++++--------------- 1 file changed, 4 insertions(+), 20 deletions(-) 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 :