Advanced clipboard for react native. add parameter changeCount compare to official Clipboard.
for npm >= 5.0
npm i react-native-advanced-clipboard
react-native link react-native-advanced-clipboard
same to official getString
same to official setString
Get content of clipboard, include text changeCount and timestamp, this method returns a Promise, so you can use following code to get clipboard content
import Clipboard from 'react-native-advanced-clipboard';
async _getContent() {
const content = await Clipboard.getContent();
}
the return value will be like this:
{
text: "clipboard text",
changeCount: 100,
timestamp: 125868 // only support Android 8.0 and later
}