Files
AndroidJetpack/Jetpack-Compose-Playground/docs/cookbook/detect_darkmode.md
T
2026-07-15 16:57:36 +08:00

547 B

How to detect dark mode

Inside your Composable you can use isSystemInDarkTheme to detect if the device is running in dark mode.

    val dark = isSystemInDarkTheme()

See also: