AlertDialog
In Wear Material 3 Compose

@Composable
fun AppCardSample() {
AppCard(
onClick = { /* Do something */ },
appName = { Text("App name") },
title = { Text("Card title") },
time = { Text("Now") },
) {
Text("Card content")
}
}