performImeAction
Source set: Common
@Deprecated(
message = "Use `SemanticsPropertyReceiver.onImeAction` instead.",
replaceWith =
ReplaceWith(
"onImeAction(imeActionType = ImeAction.Default, label = label, action = action)",
"androidx.compose.ui.semantics.onImeAction",
"androidx.compose.ui.text.input.ImeAction",
),
level = DeprecationLevel.ERROR,
)
public fun SemanticsPropertyReceiver.performImeAction(
label: String? = null,
action: (() -> Boolean)?,
): Unit