캐릭터 탭 - 섹션 사이 간격 48

채팅 캐릭터 이미지 비율 2:3으로 변경
채팅 배경 사진 -> 채팅 배경 이미지로 단어 변경
This commit is contained in:
Yu Sung
2025-09-05 14:11:27 +09:00
parent 6a8be323d6
commit 866b65d0ed
6 changed files with 13 additions and 11 deletions

View File

@@ -334,7 +334,7 @@ struct ChatRoomBgView: View {
var body: some View {
GeometryReader { geo in
let width = geo.size.width
let height = width * 5 / 4
let height = width * 3 / 2
ZStack {
if let url = url {
@@ -353,7 +353,7 @@ struct ChatRoomBgView: View {
.frame(width: width, height: height)
.clipped()
}
.aspectRatio(4/5, contentMode: .fit)
.aspectRatio(2/3, contentMode: .fit)
}
}