only show full screen button when the media is valid

pull/874/head
Ryan ZHAO 1 year ago
parent f28467a039
commit 5eefbaa905

@ -116,20 +116,22 @@ struct MessageInfoView: View {
.padding(.horizontal, Values.largeSpacing) .padding(.horizontal, Values.largeSpacing)
} }
Button { if [ .downloaded, .uploaded ].contains(attachment.state) {
self.showMediaFullScreen(attachment: attachment) Button {
} label: { self.showMediaFullScreen(attachment: attachment)
ZStack { } label: {
Circle() ZStack {
.foregroundColor(.init(white: 0, opacity: 0.4)) Circle()
Image(systemName: "arrow.up.left.and.arrow.down.right") .foregroundColor(.init(white: 0, opacity: 0.4))
.font(.system(size: 13)) Image(systemName: "arrow.up.left.and.arrow.down.right")
.foregroundColor(.white) .font(.system(size: 13))
.foregroundColor(.white)
}
.frame(width: 26, height: 26)
} }
.frame(width: 26, height: 26) .padding(.bottom, Values.smallSpacing)
.padding(.trailing, 38)
} }
.padding(.bottom, Values.smallSpacing)
.padding(.trailing, 38)
} }
.padding(.vertical, Values.verySmallSpacing) .padding(.vertical, Values.verySmallSpacing)

Loading…
Cancel
Save