diff --git a/damus/Components/ImageCarousel.swift b/damus/Components/ImageCarousel.swift index fb9c5af..0972a4f 100644 --- a/damus/Components/ImageCarousel.swift +++ b/damus/Components/ImageCarousel.swift @@ -136,6 +136,11 @@ struct ImageCarousel: View { Text(url.absoluteString) } .id(url.absoluteString) + .contextMenu { + Button("Copy Image") { + UIPasteboard.general.string = url.absoluteString + } + } } } }