🌈 Create new beautiful Compose Gradients with our new wesite ->

Tab

Kotlin
@Composable
fun TabSample() {
    var selected by remember { mutableStateOf(true) }

    Tab(
        selected = selected,
        onClick = { selected = !selected },
        text = { Text("Home") },
        icon = { Icon(Icons.Filled.Home, contentDescription = null) },
    )
}