mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-10 19:20:59 +00:00
Fix image preview sheet
This commit is contained in:
parent
b0846c9a3d
commit
4dd4968bb2
3 changed files with 13 additions and 3 deletions
|
@ -26,11 +26,20 @@ extension IceCubesApp {
|
|||
.environment(appIntentService)
|
||||
.environment(\.isSupporter, isSupporter)
|
||||
.sheet(item: $quickLook.selectedMediaAttachment) { selectedMediaAttachment in
|
||||
MediaUIView(selectedAttachment: selectedMediaAttachment,
|
||||
attachments: quickLook.mediaAttachments)
|
||||
if #available(iOS 18.0, *) {
|
||||
MediaUIView(selectedAttachment: selectedMediaAttachment,
|
||||
attachments: quickLook.mediaAttachments)
|
||||
.presentationBackground(.ultraThinMaterial)
|
||||
.presentationCornerRadius(16)
|
||||
.presentationSizing(.page)
|
||||
.withEnvironments()
|
||||
} else {
|
||||
MediaUIView(selectedAttachment: selectedMediaAttachment,
|
||||
attachments: quickLook.mediaAttachments)
|
||||
.presentationBackground(.ultraThinMaterial)
|
||||
.presentationCornerRadius(16)
|
||||
.withEnvironments()
|
||||
}
|
||||
}
|
||||
.onChange(of: pushNotificationsService.handledNotification) { _, newValue in
|
||||
if newValue != nil {
|
||||
|
|
|
@ -16,6 +16,8 @@ public struct MediaUIAttachmentImageView: View {
|
|||
.clipShape(RoundedRectangle(cornerRadius: 8))
|
||||
.scaledToFit()
|
||||
.padding(.horizontal, 8)
|
||||
.padding(.top, 44)
|
||||
.padding(.bottom, 32)
|
||||
.scaleEffect(zoom)
|
||||
} else if state.isLoading {
|
||||
ProgressView()
|
||||
|
|
|
@ -93,7 +93,6 @@ private struct DismissToolbarItem: ToolbarContent {
|
|||
} label: {
|
||||
Image(systemName: "xmark.circle")
|
||||
}
|
||||
.opacity(0)
|
||||
.keyboardShortcut(.cancelAction)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue