only show full screen button when the media is valid

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

@ -116,6 +116,7 @@ struct MessageInfoView: View {
.padding(.horizontal, Values.largeSpacing) .padding(.horizontal, Values.largeSpacing)
} }
if [ .downloaded, .uploaded ].contains(attachment.state) {
Button { Button {
self.showMediaFullScreen(attachment: attachment) self.showMediaFullScreen(attachment: attachment)
} label: { } label: {
@ -131,6 +132,7 @@ struct MessageInfoView: View {
.padding(.bottom, Values.smallSpacing) .padding(.bottom, Values.smallSpacing)
.padding(.trailing, 38) .padding(.trailing, 38)
} }
}
.padding(.vertical, Values.verySmallSpacing) .padding(.vertical, Values.verySmallSpacing)
// Attachment Info // Attachment Info

Loading…
Cancel
Save