mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-04-01 09:27:14 +08:00
436 B
436 B
Clipboard
Clipboard gives you an interface for setting to the clipboard. (Getting clipboard content is not supported on web.)
Methods
static getString()
Returns a Promise of an empty string.
static setString(content: string): boolean
Copies a string to the clipboard. On web, some browsers may not support copying to the clipboard, therefore, this function returns a boolean to indicate if the copy was successful.