Cards
Cards

Episode List Row

Compact episode row with download, play and share actions plus a meta line.

Why Synths Sound Warm
Jun 12 · 36 min
Download Share

Installation

caveui components are copy-paste Jetpack Compose built entirely on Material 3 — there's no caveui dependency to add. Make sure Material 3 is on your classpath (it ships with the Compose BOM), then copy the Usage snippet below into your project.

kotlin
// build.gradle.kts (module)
dependencies {
    implementation(platform("androidx.compose:compose-bom:2025.06.00"))
    implementation("androidx.compose.material3:material3")
}

Usage

kotlin
@Composable
fun EpisodeRow(title: String, date: String) {
  Surface(
    shape = RoundedCornerShape(16.dp),
    tonalElevation = 2.dp,
    modifier = Modifier.fillMaxWidth(),
  ) {
    Column(Modifier.padding(14.dp)) {
      Row(verticalAlignment = Alignment.CenterVertically) {
        FilledTonalIconButton(onClick = {}) {
          Icon(
            Icons.Default.PlayArrow,
            contentDescription = null,
          )
        }
        Spacer(Modifier.width(12.dp))
        Column(Modifier.weight(1f)) {
          Text(title,
            style = MaterialTheme.typography.titleSmall,
            maxLines = 1)
          Text(
            "$date · 36 min",
            style = MaterialTheme.typography.bodySmall,
            color = MaterialTheme.colorScheme.onSurfaceVariant,
          )
        }
      }
      Spacer(Modifier.height(10.dp))
      Row(
        horizontalArrangement = Arrangement.spacedBy(8.dp),
      ) {
        AssistChip(
          onClick = {},
          label = { Text("Download") },
          leadingIcon = {
            Icon(Icons.Default.Download,
              contentDescription = null)
          },
        )
        AssistChip(
          onClick = {},
          label = { Text("Share") },
          leadingIcon = {
            Icon(Icons.Default.Share,
              contentDescription = null)
          },
        )
      }
    }
  }
}