JetpackTheme
fun JetpackTheme(darkTheme: Boolean = isSystemInDarkTheme(), disableDynamicTheming: Boolean = false, content: @Composable () -> Unit)
Now in Android theme.
Parameters
darkTheme
Whether the theme should use a dark color scheme (follows system by default).
disableDynamicTheming
If true
, disables the use of dynamic theming, even when it is supported. This parameter has no effect if androidTheme is true
.