Add menu ellipsis button to notes

Changelog-Added: Add ellipsis button to notes
This commit is contained in:
ericholguin
2023-02-10 23:57:20 -07:00
committed by William Casarin
parent cff98161ee
commit b6a7f52596
7 changed files with 110 additions and 62 deletions

View File

@@ -210,11 +210,11 @@ struct ImageCarousel: View {
Text(url.absoluteString)
}
.id(url.absoluteString)
.contextMenu {
Button(NSLocalizedString("Copy Image", comment: "Context menu option to copy an image to clipboard.")) {
UIPasteboard.general.string = url.absoluteString
}
}
// .contextMenu {
// Button(NSLocalizedString("Copy Image", comment: "Context menu option to copy an image to clipboard.")) {
// UIPasteboard.general.string = url.absoluteString
// }
// }
}
}
}