Add a snackbar message when an email address is copied

This commit is contained in:
Jackson Harper 2022-02-25 15:00:43 -08:00
parent a5f6eae574
commit 0a9b9f1387

View file

@ -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) }
)
}