Composables UI is out: our new component library for Compose Multiplatform ->
Compose Component

ActionCard

ActionCard is a version of a card that contains a primary action that is placed in the center of the bottom edge of the card.

ActionCardWithTitleSample

@Composable
fun ActionCardWithTitleSample() {
    ActionCard(action = { Button(onClick = {}) { Text("Send") } }, title = { Text("Title") }) {
        Text("This is a card with a title and action")
    }
}

Last updated: