Android Dev/Compose / / 2021. 12. 15. 03:23

compose에서 statusbar color(header 등) 변경

https://stackoverflow.com/questions/65610216/how-to-change-statusbar-color-in-jetpack-compose

 

how to change statusbar color in jetpack compose?

how to make status bar color transparent in compose like here: it has the same color but with a little bit shade.

stackoverflow.com

implementation "com.google.accompanist:accompanist-systemuicontroller:0.17.0"
val systemUiController = rememberSystemUiController()
if(darkTheme){
    systemUiController.setSystemBarsColor(
        color = Color.Transparent
    )
}else{
    systemUiController.setSystemBarsColor(
        color = Color.White
    )
}
  • 네이버 블로그 공유
  • 네이버 밴드 공유
  • 페이스북 공유
  • 카카오스토리 공유