mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-05-24 01:09:12 +08:00
17 lines
436 B
Markdown
17 lines
436 B
Markdown
# 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.
|