캐릭터 탭 - 섹션 사이 간격 48
채팅 캐릭터 이미지 비율 2:3으로 변경 채팅 배경 사진 -> 채팅 배경 이미지로 단어 변경
This commit is contained in:
		@@ -25,7 +25,7 @@ struct ChatBgSelectionView: View {
 | 
			
		||||
    var body: some View {
 | 
			
		||||
        BaseView(isLoading: $viewModel.isLoading) {
 | 
			
		||||
            VStack(spacing: 0) {
 | 
			
		||||
                DetailNavigationBar(title: "배경 사진 선택") {
 | 
			
		||||
                DetailNavigationBar(title: "배경 이미지 선택") {
 | 
			
		||||
                    isShowing = false
 | 
			
		||||
                }
 | 
			
		||||
                // 갤러리 그리드
 | 
			
		||||
@@ -73,7 +73,7 @@ struct ChatBgSelectionView: View {
 | 
			
		||||
    private func galleryImageView(item: CharacterImageListItemResponse) -> some View {
 | 
			
		||||
        GeometryReader { geo in
 | 
			
		||||
            let width = geo.size.width
 | 
			
		||||
            let height = width * 5 / 4
 | 
			
		||||
            let height = width * 3 / 2
 | 
			
		||||
            
 | 
			
		||||
            ZStack(alignment: .bottomTrailing) {
 | 
			
		||||
                // 이미지
 | 
			
		||||
@@ -110,7 +110,7 @@ struct ChatBgSelectionView: View {
 | 
			
		||||
            .contentShape(Rectangle())
 | 
			
		||||
            .onTapGesture { onTapBgImage(item) }
 | 
			
		||||
        }
 | 
			
		||||
        .aspectRatio(4/5, contentMode: .fit)
 | 
			
		||||
        .aspectRatio(2/3, contentMode: .fit)
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user