Skip to content

Commit

Permalink
fix: 상태바 색깔 역전
Browse files Browse the repository at this point in the history
  • Loading branch information
SeongHoonC committed Mar 4, 2024
1 parent 9a2e0b1 commit 2426e12
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ class HomeActivity : AppCompatActivity() {
val isLight = when (supportFragmentManager.findFragmentById(R.id.fcvHomeContainer)) {
is ArtistDetailFragment,
is FestivalDetailFragment,
-> true
-> false

else -> false
else -> true
}
setStatusBarMode(isLight = isLight, backgroundColor = Color.TRANSPARENT)
}
Expand Down

0 comments on commit 2426e12

Please sign in to comment.