- I have displayed a snackbar with specific action in Jetpack compose but click listener on that action is not working.
Here is my code:
@Composable
fun MySnackBar() {
Snackbar(
modifier = Modifier.padding(4.dp),
action = {
TextButton(color = LightBlue,onClick = {
Log.d("TAG", "Action clicked!")
}) {
Text(text = "Remove")
}
}
) {
Text(text = "This is a basic Snackbar with action item")
}
}
