feat(image): 메인 홈, 채팅 - 톡 페이지에 DownsampledKFImage 적용
- 수평 리스트 HStack → LazyHStack으로 교체해 프리로딩/메모리 개선
This commit is contained in:
		@@ -56,7 +56,7 @@ struct DayOfWeekSeriesView: View {
 | 
			
		||||
            .padding(.horizontal, 24)
 | 
			
		||||
            
 | 
			
		||||
            ScrollView(.horizontal, showsIndicators: false) {
 | 
			
		||||
                HStack(spacing: 5) {
 | 
			
		||||
                LazyHStack(spacing: 5) {
 | 
			
		||||
                    ForEach(0..<dayOfWeekItems.count, id: \.self) {
 | 
			
		||||
                        let item = dayOfWeekItems[$0]
 | 
			
		||||
                        DayOfWeekDayView(dayOfWeek: item.dayOfWeekStr, isSelected: dayOfWeek == item.dayOfWeek)
 | 
			
		||||
@@ -72,7 +72,7 @@ struct DayOfWeekSeriesView: View {
 | 
			
		||||
            }
 | 
			
		||||
            
 | 
			
		||||
            ScrollView(.horizontal, showsIndicators: false) {
 | 
			
		||||
                HStack(spacing: 16) {
 | 
			
		||||
                LazyHStack(spacing: 16) {
 | 
			
		||||
                    ForEach(0..<seriesList.count, id: \.self) {
 | 
			
		||||
                        SeriesItemView(item: seriesList[$0])
 | 
			
		||||
                    }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user