Clipboard
-
Cmn
interface Clipboard
Summary
Public functions |
||
---|---|---|
suspend ClipEntry? |
Returns the clipboard entry that's provided by the platform's ClipboardManager. |
Cmn
|
suspend Unit |
setClipEntry(clipEntry: ClipEntry?) Puts the given |
Cmn
|
Public properties |
||
---|---|---|
NativeClipboard |
Returns the native clipboard that exposes the full functionality of platform clipboard. |
Cmn
|
Public functions
getClipEntry
suspend fun getClipEntry(): ClipEntry?
Returns the clipboard entry that's provided by the platform's ClipboardManager.
This item can include arbitrary content like text, images, videos, or any data that may be provided through a mediator. Returned entry may contain multiple items with different types.
It returns null when the clipboard is empty.
It's safe to call this function without triggering Clipboard access warnings on mobile platforms.
setClipEntry
suspend fun setClipEntry(clipEntry: ClipEntry?): Unit
Puts the given clipEntry
in platform's ClipboardManager.
Parameters | |
---|---|
clipEntry: ClipEntry? |
Platform specific clip object that either holds data or links to it. Pass null to clear the clipboard. |
Public properties
nativeClipboard
val nativeClipboard: NativeClipboard
Returns the native clipboard that exposes the full functionality of platform clipboard.