How to Make Text Copyable in iOS SwiftUI
In this tutorial, the focus is on a simple but significant aspect of improving user interaction in your app – making text copyable in SwiftUI. Whether it’s an email address, a unique code, or any piece of information, the ability for users to copy text directly from the app enhances usability and provides a seamless user experience.
Basics: Make Text Copyable
This functionality can be achieved by enabling textSelection
:
Text("This text is copyable!")
.textSelection(.enabled)
In this example, when the user performs a long press gesture on the text “This text is copyable!”, the text can be copied to the system clipboard.
Making text copyable in SwiftUI is a straightforward process that can significantly enhance user interaction and convenience in your app.
One Comment