mirror of
https://github.com/mihonapp/mihon.git
synced 2025-03-08 15:35:42 +03:00
MainActivity: Show bottom nav when the tab page is changed (#4914)
* MainActivity: Show bottom nav when the tab page is changed * Revert "MainActivity: Show bottom nav when the tab page is changed" This reverts commit 27fd73db * MainActivity: Show bottom nav when the app bar is fully expanded
This commit is contained in:
parent
41a747c7e7
commit
d0bf93ebb7
1 changed files with 9 additions and 0 deletions
|
@ -130,6 +130,15 @@ class MainActivity : BaseViewBindingActivity<MainActivityBinding>() {
|
|||
tabAnimator = ViewHeightAnimator(binding.tabs, 0L)
|
||||
bottomNavAnimator = ViewHeightAnimator(binding.bottomNav)
|
||||
|
||||
// If bottom nav is hidden, make it visible again when the app bar is expanded
|
||||
binding.appbar.addOnOffsetChangedListener(
|
||||
AppBarLayout.OnOffsetChangedListener { _, verticalOffset ->
|
||||
if (verticalOffset == 0) {
|
||||
showBottomNav(true)
|
||||
}
|
||||
}
|
||||
)
|
||||
|
||||
// Set behavior of bottom nav
|
||||
preferences.hideBottomBar()
|
||||
.asImmediateFlow { setBottomNavBehaviorOnScroll() }
|
||||
|
|
Loading…
Add table
Reference in a new issue