Hey, have you faced this weird bug that snack bar ...
# compose-android
m
Hey, have you faced this weird bug that snack bar text color can't be changed? As far as I understand, this code should do it:
Copy code
SnackbarHost(
    modifier = Modifier.align(Alignment.BottomCenter),
    hostState = snackbarHostState,
) { data ->
    Snackbar(
        snackbarData = data,
        containerColor = Color.Gray,
        contentColor = Color.Red //change text color in snackbar?
    )
}
but as you can see, the text color just stays black...