copy text to pasteboard when tapping email button

This commit is contained in:
Satindar Dhillon 2022-02-25 13:13:51 -08:00
parent 666da89c98
commit 5f0297f237

View file

@ -70,7 +70,7 @@ struct NewsletterEmailsView: View {
Section(header: Text("Existing Emails (Tap to copy)")) {
ForEach(viewModel.emails) { newsletterEmail in
Button(
action: {},
action: { UIPasteboard.general.string = newsletterEmail.email },
label: { Text(newsletterEmail.email) }
)
}