fix Onboarding not working; fix deprecation in Activity.hideBars()

This commit is contained in:
2022-03-29 23:23:10 +02:00
parent 7fbf639a70
commit e76cbda04d
2 changed files with 9 additions and 3 deletions

View File

@ -36,7 +36,12 @@ fun Activity.hideBars() {
setDecorFitsSystemWindows(false)
insetsController?.apply {
hide(WindowInsets.Type.statusBars() or WindowInsets.Type.navigationBars())
systemBarsBehavior = WindowInsetsController.BEHAVIOR_SHOW_BARS_BY_SWIPE
systemBarsBehavior = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
WindowInsetsController.BEHAVIOR_DEFAULT
} else {
@Suppress("deprecation")
WindowInsetsController.BEHAVIOR_SHOW_BARS_BY_SWIPE
}
}
} else {
@Suppress("deprecation")