feat(main): 하단 탭 순서 변경

This commit is contained in:
Yu Sung
2025-09-11 19:27:23 +09:00
parent b97df2a213
commit 73ec0ce12e
2 changed files with 29 additions and 29 deletions

View File

@@ -33,14 +33,14 @@ struct HomeView: View {
.frame(width: viewModel.currentTab == .home ? proxy.size.width : 0)
.opacity(viewModel.currentTab == .home ? 1.0 : 0.01)
chatTabView
.frame(width: viewModel.currentTab == .chat ? proxy.size.width : 0)
.opacity(viewModel.currentTab == .chat ? 1.0 : 0.01)
liveView
.frame(width: viewModel.currentTab == .live ? proxy.size.width : 0)
.opacity(viewModel.currentTab == .live ? 1.0 : 0.01)
chatTabView
.frame(width: viewModel.currentTab == .chat ? proxy.size.width : 0)
.opacity(viewModel.currentTab == .chat ? 1.0 : 0.01)
if viewModel.currentTab == .mypage {
MyPageView()
}