I would like to present a share sheet when the user interacts with a swipe action. To achieve this I currently have simply this code:
.swipeActions(edge: .leading, allowsFullSwipe: false) {
ShareLink("Text", item: "Text")
.tint(.accentColor)
}
but when I tap it, nothing happens...
I really appreciate any help!