Clipboard
Clipboard management plugin for Cordova that supports iOS, Android, and Windows Phone 8.
Premier Version Available
Featuring regular release cycles, security and bug fixes, and guaranteed SLAs.
インストール
Ionic Native Enterprise はIonic Teamが完全にサポートしメンテナンスしているプラグインを利用できます。 詳しくみる か、エンタープライズプラグインに興味があれば 連絡ください
サポートしているプラットフォーム
- Android
- iOS
- Windows Phone 8
利用方法
React
Angular
import { Clipboard } from '@ionic-native/clipboard/ngx';
constructor(private clipboard: Clipboard) { }
...
this.clipboard.copy('Hello world');
this.clipboard.paste().then(
(resolve: string) => {
alert(resolve);
},
(reject: string) => {
alert('Error: ' + reject);
}
);
this.clipboard.clear();

