Clipboard
Clipboard
gives you an interface for setting and getting content from Clipboard on both Android and iOS
Methods
Reference
Methods
getString()
Clipboard.getString();
Get content of string type, this method returns a Promise
, so you can use following code to get clipboard content
async _getContent() {
var content = await Clipboard.getString();
}
setString()
Clipboard.setString(content);
Set content of string type. You can use following code to set clipboard content:
_setContent() {
Clipboard.setString('hello world');
}
Parameters:
Name | Type | Required | Description |
---|---|---|---|
content | string | yes | The content to be stored in the clipboard. |