Skip to content

Repository files navigation

@capacitor/clipboard

bluefrogsoftware fork. This is bluefrogsoftware's fork of the clipboard package from ionic-team/capacitor-plugins, carrying a fix for Android read() not returning image clips (see ionic-team/capacitor-plugins#2380).

The Clipboard API enables copy and pasting to/from the system clipboard.

Install

npm install @capacitor/clipboard
npx cap sync

Example

import { Clipboard } from '@capacitor/clipboard';

const writeToClipboard = async () => {
  await Clipboard.write({
    string: "Hello World!"
  });
};

const checkClipboard = async () => {
  const { type, value } = await Clipboard.read();

  console.log(`Got ${type} from clipboard: ${value}`);
};

API

write(...)

write(options: WriteOptions) => Promise<void>

Write a value to the clipboard (the "copy" action)

Param Type
options WriteOptions

Since: 1.0.0


read()

read() => Promise<ReadResult>

Read a value from the clipboard (the "paste" action)

Returns: Promise<ReadResult>

Since: 1.0.0


Interfaces

WriteOptions

Represents the data to be written to the clipboard.

Prop Type Description Since
string string Text value to copy. 1.0.0
image string Image in Data URL format to copy. 1.0.0
url string URL string to copy. 1.0.0
label string User visible label to accompany the copied data (Android Only). 1.0.0

ReadResult

Represents the data read from the clipboard.

Prop Type Description Since
value string Data read from the clipboard. 1.0.0
type string Type of data in the clipboard. 1.0.0

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages