Badges
Badgesanimated

Wave text

A sale chip whose letters bob in a left-to-right wave like a stadium crowd.

SALE

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
val t = rememberInfiniteTransition(label = "wave")
val word = "SALE"
Surface(
    shape = RoundedCornerShape(50),
    color = Color(0xFFF59E0B),
    contentColor = Color(0xFF7C2D12),
) {
    Row(Modifier.padding(horizontal = 12.dp, vertical = 4.dp)) {
        word.forEachIndexed { i, ch ->
            val y by t.animateFloat(
                initialValue = 0f,
                targetValue = -4f,
                animationSpec = infiniteRepeatable(
                    tween(600, delayMillis = i * 90),
                    RepeatMode.Reverse,
                ),
                label = "ch",
            )
            Text(
                ch.toString(),
                Modifier.offset(y = y.dp),
                fontWeight = FontWeight.Bold,
                fontSize = 13.sp,
            )
        }
    }
}