ActionView

fun ActionView(modifier: <Error class: unknown class> = Modifier, icon: <Error class: unknown class>? = null, title: String, description: String? = null, endLabel: String? = null, endLabelColor: <Error class: unknown class> = AnsaTheme.colors.text.secondary, onClick: () -> Unit)

An interactive component to trigger an action.

Parameters

modifier

The modifier to be applied to the ActionView.

icon

An optional icon to be display left-aligned in the view. Provided as a Painter.

title

Required title for the view.

description

Optional second line description. Will be placed under the title.

endLabel

Optional end-aligned label.

endLabelColor

Color for the endLabel. Defaults to dev.ansa.sdk.ui.theme.colors.TextColors.secondary

onClick

Will be called when user clicks on the element


fun ActionView(modifier: <Error class: unknown class> = Modifier, icon: <Error class: unknown class>? = null, title: String, description: String? = null, endSlot: () -> Unit, onClick: () -> Unit)

An interactive component to trigger an action.

Parameters

modifier

The modifier to be applied to the ActionView.

icon

An optional icon to be display left-aligned in the view. Provided as a Painter.

title

Required title for the view.

description

Optional second line description. Will be placed under the title.

endSlot

Optional end-aligned slot to render additional state or content.

onClick

Will be called when user clicks on the element