라이브 메인 - 메시지 탭 보이도록 수정

This commit is contained in:
Yu Sung 2023-08-21 04:41:54 +09:00
parent 8b7f3fbd07
commit 0daf638b68
1 changed files with 26 additions and 38 deletions

View File

@ -9,22 +9,12 @@ import SwiftUI
struct BottomTabView: View { struct BottomTabView: View {
let width: CGFloat let width: CGFloat
let tabWidth: CGFloat
@Binding var currentTab: HomeViewModel.CurrentTab @Binding var currentTab: HomeViewModel.CurrentTab
init(width: CGFloat, currentTab: Binding<HomeViewModel.CurrentTab>) {
self.width = width
self._currentTab = currentTab
if UserDefaults.bool(forKey: .auth) {
tabWidth = width / 5
} else {
tabWidth = width / 4
}
}
var body: some View { var body: some View {
HStack(spacing: 0) { HStack(spacing: 0) {
let tabWidth = width / 5
TabButton( TabButton(
title: "콘텐츠", title: "콘텐츠",
action: { action: {
@ -100,32 +90,30 @@ struct BottomTabView: View {
width: tabWidth width: tabWidth
) )
if UserDefaults.bool(forKey: .auth) { TabButton(
TabButton( title: "메시지",
title: "메시지", action: {
action: { if currentTab != .message {
if currentTab != .message { currentTab = .message
currentTab = .message }
} },
}, image: {
image: { currentTab == .message ?
currentTab == .message ? "ic_tabbar_message_selected" :
"ic_tabbar_message_selected" : "ic_tabbar_message_normal"
"ic_tabbar_message_normal" },
}, fontName: {
fontName: { currentTab == .message ?
currentTab == .message ? Font.bold.rawValue :
Font.bold.rawValue : Font.medium.rawValue
Font.medium.rawValue },
}, color: {
color: { currentTab == .message ?
currentTab == .message ? Color(hex: "9970ff") :
Color(hex: "9970ff") : Color(hex: "909090")
Color(hex: "909090") },
}, width: tabWidth
width: tabWidth )
)
}
TabButton( TabButton(
title: "마이", title: "마이",