라이브 시그니처 후원 위치

- 기존 하단 가운데에서 가운데 우측으로 이동
This commit is contained in:
Yu Sung 2024-04-12 16:33:21 +09:00
parent 8505d444e2
commit ba11b8c842
1 changed files with 11 additions and 8 deletions

View File

@ -259,16 +259,19 @@ struct LiveRoomViewV2: View {
}
if viewModel.signatureImageUrl.trimmingCharacters(in: .whitespacesAndNewlines).count > 0 {
VStack(spacing: 0) {
HStack {
Spacer()
VStack(alignment: .trailing, spacing: 0) {
Spacer()
AnimatedImage(url: URL(string: viewModel.signatureImageUrl))
.resizable()
.aspectRatio(contentMode: .fit)
.frame(height: 300)
.frame(maxWidth: .infinity)
.padding(.horizontal, 20)
.padding(.bottom, 65)
.frame(height: 200)
Spacer()
}
}
}
}