How to use dynamicDarkColorScheme in jetpack compose
Hey guys I have question can we override MaterialTheme.colorScheme.background to change specific color with according to theme type?
Surface(modifier = Modifier.fillMaxSize(), color = MaterialTheme.colorScheme.background) {
Greeting("Android")
}
If I change of Surface(color = Color.Black) in dark theme which is showing black background but if I change white theme it showing me black background, So is there way to override colorScheme or any other alternative recommended solution for...