mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Add a snackbar message when an email address is copied
This commit is contained in:
parent
a5f6eae574
commit
0a9b9f1387
1 changed files with 4 additions and 1 deletions
|
|
@ -83,7 +83,10 @@ struct NewsletterEmailsView: View {
|
|||
Section(header: Text("Existing Emails (Tap to copy)")) {
|
||||
ForEach(viewModel.emails) { newsletterEmail in
|
||||
Button(
|
||||
action: { UIPasteboard.general.string = newsletterEmail.email },
|
||||
action: {
|
||||
UIPasteboard.general.string = newsletterEmail.email
|
||||
NSNotification.operationSuccess(message: "Email copied")
|
||||
},
|
||||
label: { Text(newsletterEmail.email) }
|
||||
)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue