fix: 메인 홈
- 추천 채널 : 모든 글자 색 white - 보온 주간 차트 : row 사이 간격 16
This commit is contained in:
		
										
											Binary file not shown.
										
									
								
							| 
		 Before Width: | Height: | Size: 677 B  | 
@@ -1,7 +1,7 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  "images" : [
 | 
					  "images" : [
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
      "filename" : "ic_heart_dark_green.png",
 | 
					      "filename" : "ic_comment_white.png",
 | 
				
			||||||
      "idiom" : "universal",
 | 
					      "idiom" : "universal",
 | 
				
			||||||
      "scale" : "1x"
 | 
					      "scale" : "1x"
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
							
								
								
									
										
											BIN
										
									
								
								SodaLive/Resources/Assets.xcassets/ic_comment_white.imageset/ic_comment_white.png
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								SodaLive/Resources/Assets.xcassets/ic_comment_white.imageset/ic_comment_white.png
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 437 B  | 
										
											Binary file not shown.
										
									
								
							| 
		 Before Width: | Height: | Size: 643 B  | 
@@ -1,7 +1,7 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  "images" : [
 | 
					  "images" : [
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
      "filename" : "ic_comment_dark_green.png",
 | 
					      "filename" : "ic_heart_white.png",
 | 
				
			||||||
      "idiom" : "universal",
 | 
					      "idiom" : "universal",
 | 
				
			||||||
      "scale" : "1x"
 | 
					      "scale" : "1x"
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
							
								
								
									
										
											BIN
										
									
								
								SodaLive/Resources/Assets.xcassets/ic_heart_white.imageset/ic_heart_white.png
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								SodaLive/Resources/Assets.xcassets/ic_heart_white.imageset/ic_heart_white.png
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 393 B  | 
@@ -11,10 +11,10 @@ struct HomeWeeklyChartView: View {
 | 
				
			|||||||
    @AppStorage("token") private var token: String = UserDefaults.string(forKey: UserDefaultsKey.token)
 | 
					    @AppStorage("token") private var token: String = UserDefaults.string(forKey: UserDefaultsKey.token)
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
    let rows = [
 | 
					    let rows = [
 | 
				
			||||||
        GridItem(.fixed(60), alignment: .leading),
 | 
					        GridItem(.fixed(60), spacing: 16, alignment: .leading),
 | 
				
			||||||
        GridItem(.fixed(60), alignment: .leading),
 | 
					        GridItem(.fixed(60), spacing: 16, alignment: .leading),
 | 
				
			||||||
        GridItem(.fixed(60), alignment: .leading),
 | 
					        GridItem(.fixed(60), spacing: 16, alignment: .leading),
 | 
				
			||||||
        GridItem(.fixed(60), alignment: .leading)
 | 
					        GridItem(.fixed(60), spacing: 16, alignment: .leading)
 | 
				
			||||||
    ]
 | 
					    ]
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
    let contentList: [GetAudioContentRankingItem]
 | 
					    let contentList: [GetAudioContentRankingItem]
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -30,19 +30,19 @@ struct RecommendChannelContentItemView: View {
 | 
				
			|||||||
                
 | 
					                
 | 
				
			||||||
                HStack(spacing: 12) {
 | 
					                HStack(spacing: 12) {
 | 
				
			||||||
                    HStack(spacing: 4) {
 | 
					                    HStack(spacing: 4) {
 | 
				
			||||||
                        Image("ic_heart_dark_green")
 | 
					                        Image("ic_heart_white")
 | 
				
			||||||
                        
 | 
					                        
 | 
				
			||||||
                        Text("\(item.likeCount)")
 | 
					                        Text("\(item.likeCount)")
 | 
				
			||||||
                            .font(.custom(Font.preRegular.rawValue, size: 18))
 | 
					                            .font(.custom(Font.preRegular.rawValue, size: 18))
 | 
				
			||||||
                            .foregroundColor(Color(hex: "B0BEC5"))
 | 
					                            .foregroundColor(.white)
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
                    
 | 
					                    
 | 
				
			||||||
                    HStack(spacing: 4) {
 | 
					                    HStack(spacing: 4) {
 | 
				
			||||||
                        Image("ic_comment_dark_green")
 | 
					                        Image("ic_comment_white")
 | 
				
			||||||
                        
 | 
					                        
 | 
				
			||||||
                        Text("\(item.commentCount)")
 | 
					                        Text("\(item.commentCount)")
 | 
				
			||||||
                            .font(.custom(Font.preRegular.rawValue, size: 18))
 | 
					                            .font(.custom(Font.preRegular.rawValue, size: 18))
 | 
				
			||||||
                            .foregroundColor(Color(hex: "B0BEC5"))
 | 
					                            .foregroundColor(.white)
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -31,7 +31,7 @@ struct RecommendChannelItemView: View {
 | 
				
			|||||||
                    HStack(spacing: 4) {
 | 
					                    HStack(spacing: 4) {
 | 
				
			||||||
                        Text("콘텐츠")
 | 
					                        Text("콘텐츠")
 | 
				
			||||||
                            .font(.custom(Font.preRegular.rawValue, size: 18))
 | 
					                            .font(.custom(Font.preRegular.rawValue, size: 18))
 | 
				
			||||||
                            .foregroundColor(Color(hex: "B0BEC5"))
 | 
					                            .foregroundColor(.white)
 | 
				
			||||||
                        
 | 
					                        
 | 
				
			||||||
                        Text("\(item.contentCount)")
 | 
					                        Text("\(item.contentCount)")
 | 
				
			||||||
                            .font(.custom(Font.preBold.rawValue, size: 18))
 | 
					                            .font(.custom(Font.preBold.rawValue, size: 18))
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user