콘텐츠 메인 탭 홈

- 왼쪽 상단 로고 제거
- 오른쪽 상단 충전 페이지 이동 아이콘 추가
- 오른쪽 상단 보관함 아이콘 제거
This commit is contained in:
Yu Sung 2025-03-27 09:14:29 +09:00
parent c71e78fc88
commit cfcc67df96
1 changed files with 4 additions and 7 deletions

View File

@ -19,11 +19,6 @@ struct ContentMainTabHomeView: View {
ScrollView(.vertical, showsIndicators: false) {
VStack(alignment: .leading, spacing: 0) {
HStack(spacing: 0) {
Image("ic_launcher")
.resizable()
.frame(width: 33.3, height: 33.3)
.cornerRadius(6.7)
Text("보이스온")
.font(.custom(Font.bold.rawValue, size: 21.3))
.foregroundColor(Color.white)
@ -32,9 +27,11 @@ struct ContentMainTabHomeView: View {
Spacer()
if !token.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty {
Image("ic_content_keep")
Image("ic_can")
.onTapGesture {
AppState.shared.setAppStep(step: .myBox(currentTab: .orderlist))
AppState
.shared
.setAppStep(step: .canCharge(refresh: {}))
}
}
}