InteractionSoundSamples
@Composable
fun InteractionSoundSamples() {
Column(modifier = Modifier.padding(16.dp)) {
Text("Standard Clickable (Has Sound):")
Button(onClick = {}) { Text("Click me") }
Text("\nDisabled Sound Feedback:")
SoundEffectOnInteraction(enabled = false) { Button(onClick = {}) { Text("Silent Button") } }
}
}