Last updated 1 year ago
Was this helpful?
Clipboard value received
Latest clipboard value - text
Copy text to clipboard
Get text from clipboard
// Check if native app const clipboard = new NativelyClipboard(); clipboard.copy(text); const callback = function (resp) { console.log(resp.text); } clipboard.paste(callback);