Copy a Text to clipboard in React Native

If you want to copy a specific text in React Native, you can set selectable prop to true in Text component and after a long press on the text you will be able to copy that text.

Example:

<Text selectable={true}> My name is Hammad </Text>