Start native apps faster with the Composables CLI ->
Interface

AndroidClipboard

Android-specific implementation of the Clipboard interface that provides access to the underlying android.content.ClipboardManager.

Source set: Android
public interface AndroidClipboard : Clipboard

Android-specific implementation of the Clipboard interface that provides access to the underlying android.content.ClipboardManager.

Properties

clipboardManager

Source set: Android
public val clipboardManager: android.content.ClipboardManager

Returns an android.content.ClipboardManager that exposes the full functionality of platform clipboard.

nativeClipboard

Source set: Android
@Deprecated(
        message = "Use [nativeClipboardManager] extension instead",
        replaceWith = ReplaceWith("nativeClipboardManager"),
    )
    override val nativeClipboard: android.content.ClipboardManager