Compose Unstyled 2.0 is out! Check the official announcement blog ->
Compose Component

OutlinedCard

Outlined Wear Material 3 Card that offers a single slot to take any content.

OutlinedCard social preview

NonClickableOutlinedCardSample

@Composable
fun NonClickableOutlinedCardSample() {
    OutlinedCard { Text("Non-clickable outlined card") }
}

OutlinedCardSample

@Composable
fun OutlinedCardSample() {
    OutlinedCard(onClick = { /* Do something */ }) { Text("Outlined card") }
}

Last updated: