Avatars
Avatars

Verified notch

An avatar with a cut-out notch cradling a verified check badge.

EV

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 VerifiedAvatar(initials: String) {
    val badge = Color(0xFF3B82F6)
    val bg = MaterialTheme.colorScheme.background
    Box(Modifier.size(52.dp)) {
        Box(
            Modifier.fillMaxSize().clip(CircleShape)
                .background(MaterialTheme.colorScheme.surfaceVariant),
            contentAlignment = Alignment.Center,
        ) {
            Text(initials, style = MaterialTheme.typography.titleSmall)
        }
        Box(
            Modifier.align(Alignment.BottomEnd).size(20.dp)
                .clip(CircleShape).background(bg).padding(2.dp)
                .clip(CircleShape).background(badge),
            contentAlignment = Alignment.Center,
        ) {
            Icon(
                Icons.Filled.Check, contentDescription = "Verified",
                tint = Color.White, modifier = Modifier.size(12.dp),
            )
        }
    }
}