react-native-advanced-clipboard

1.1.0 • Public • Published

react-native-advanced-clipboard

Advanced clipboard for react native. add parameter changeCount compare to official Clipboard.

Install

for npm >= 5.0

npm i react-native-advanced-clipboard
react-native link react-native-advanced-clipboard

Method

getString

same to official getString

setString

same to official setString

getContent

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 
}

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i react-native-advanced-clipboard

      Weekly Downloads

      6

      Version

      1.1.0

      License

      MIT

      Unpacked Size

      23.6 kB

      Total Files

      18

      Last publish

      Collaborators

      • magicismight
      • sohobloo
      • bellzhong