시그니처 후원

- 위치 가운데로 수정
This commit is contained in:
Yu Sung 2024-04-30 19:43:11 +09:00
parent 38653247b8
commit f97917f407
1 changed files with 9 additions and 11 deletions

View File

@ -259,19 +259,17 @@ struct LiveRoomViewV2: View {
} }
if viewModel.signatureImageUrl.trimmingCharacters(in: .whitespacesAndNewlines).count > 0 { if viewModel.signatureImageUrl.trimmingCharacters(in: .whitespacesAndNewlines).count > 0 {
HStack { VStack {
Spacer() Spacer()
VStack(alignment: .trailing, spacing: 0) { AnimatedImage(url: URL(string: viewModel.signatureImageUrl))
Spacer() .resizable()
.aspectRatio(contentMode: .fit)
AnimatedImage(url: URL(string: viewModel.signatureImageUrl)) .frame(width: screenSize().width - 64)
.resizable()
.aspectRatio(contentMode: .fit) Spacer()
.frame(height: 200) Spacer()
Spacer()
Spacer()
}
} }
} }
} }