Skip to content

Latest commit

 

History

History
72 lines (52 loc) · 2.89 KB

systemuicontroller.md

File metadata and controls

72 lines (52 loc) · 2.89 KB

System UI Controller for Jetpack Compose

Maven Central

System UI Controller provides easy-to-use utilities for updating the System UI bar colors within Jetpack Compose.

Usage

To control the system UI in your composables, you need to get a SystemUiController instance. The library provides the rememberSystemUiController() function which returns an instance for the current system (currently only Android).

In your layouts you can update the system bar colors like so:

// Remember a SystemUiController
val systemUiController = rememberSystemUiController()
val useDarkIcons = MaterialTheme.colors.isLight

SideEffect {
    // Update all of the system bar colors to be transparent, and use
    // dark icons if we're in light theme
    systemUiController.setSystemBarsColor(
        color = Color.Transparent,
        darkIcons = useDarkIcons
    )

    // setStatusBarColor() and setNavigationBarColor() also exist
}

System bar icon colors

The library automatically handles API level differences when running on Android devices. If we look at the example of status bar icons, Android only natively supports dark icons on API 23+. This library handles this by automatically altering the requested color with a scrim, to maintain contrast:

Similar happens on navigation bar color, which is only available on API 26+.

Modifying scrim logic

The scrim logic can be modified if needed:

systemUiController.setStatusBarColor(
    color = Color.Transparent,
    darkIcons = true
) { requestedColor ->
    // TODO: return a darkened color to be used when the system doesn't
    // natively support dark icons
}

Samples

For complete samples, check out the Insets samples which all use SystemUiController to set transparent system bars.

Download

Maven Central

repositories {
    mavenCentral()
}

dependencies {
    implementation "com.google.accompanist:accompanist-systemuicontroller:<version>"
}

Snapshots of the development version are available in Sonatype's snapshots repository. These are updated on every commit.