feat: 메인 홈
- 캔 충전 아이콘 변경 - 검색, 구매목록 아이콘 추가
This commit is contained in:
		@@ -18,18 +18,32 @@ struct HomeTabView: View {
 | 
			
		||||
        BaseView(isLoading: $viewModel.isLoading) {
 | 
			
		||||
            ZStack(alignment: .bottomTrailing) {
 | 
			
		||||
                VStack(alignment: .leading, spacing: 0) {
 | 
			
		||||
                    HStack(spacing: 0) {
 | 
			
		||||
                    HStack(spacing: 24) {
 | 
			
		||||
                        Image("img_text_logo")
 | 
			
		||||
                        
 | 
			
		||||
                        Spacer()
 | 
			
		||||
                        
 | 
			
		||||
                        if !token.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty {
 | 
			
		||||
                            Image("ic_can")
 | 
			
		||||
                            Image("ic_search_white")
 | 
			
		||||
                                .onTapGesture {
 | 
			
		||||
                                    AppState
 | 
			
		||||
                                        .shared
 | 
			
		||||
                                        .setAppStep(step: .search)
 | 
			
		||||
                                }
 | 
			
		||||
                            
 | 
			
		||||
                            Image("ic_can_circle")
 | 
			
		||||
                                .onTapGesture {
 | 
			
		||||
                                    AppState
 | 
			
		||||
                                        .shared
 | 
			
		||||
                                        .setAppStep(step: .canCharge(refresh: {}))
 | 
			
		||||
                                }
 | 
			
		||||
                            
 | 
			
		||||
                            Image("ic_storage")
 | 
			
		||||
                                .onTapGesture {
 | 
			
		||||
                                    AppState
 | 
			
		||||
                                        .shared
 | 
			
		||||
                                        .setAppStep(step: .myBox(currentTab: .orderlist))
 | 
			
		||||
                                }
 | 
			
		||||
                        }
 | 
			
		||||
                    }
 | 
			
		||||
                    .padding(.horizontal, 24)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user