βοΈClipboard
π§ Bubble.io Plugin
[Element] Natively - Clipboard
Events:
Clipboard value received
States:
Latest clipboard value - text
Actions:
Copy text to clipboard
Get text from clipboard
π JavaScript SDK
Device App Info
// Check if native app
const clipboard = new NativelyClipboard();
clipboard.copy(text);
const callback = function (resp) {
console.log(resp.text);
}
clipboard.paste(callback);
Last updated
Was this helpful?