You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import{Clipboard}from'react-native';Clipboard.setString('clipboard-contents');async_getContent(){varcontent=awaitClipboard.getString();// getString() returns a Promise}
It could be worth a brief note in the README that no external clipboard dependency is needed if using a newer version of RN.
The text was updated successfully, but these errors were encountered:
Just a note to others that a Clipboard API has been part of RN core since version 0.17: https://github.com/facebook/react-native/blob/master/Libraries/Components/Clipboard/Clipboard.js (It will be included in the React Native documentation site soon.)
Usage is as follows:
It could be worth a brief note in the README that no external clipboard dependency is needed if using a newer version of RN.
The text was updated successfully, but these errors were encountered: