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