mirror of
https://github.com/vitorpamplona/amethyst.git
synced 2025-04-03 09:28:18 +02:00
Avoids bottom nav recompositions
This commit is contained in:
parent
8d8016e01b
commit
23825ceed5
@ -144,25 +144,35 @@ private fun RenderBottomMenu(
|
||||
)
|
||||
NavigationBar(tonalElevation = Size0dp) {
|
||||
bottomNavigationItems.forEach { item ->
|
||||
HasNewItemsIcon(item, accountViewModel, navEntryState, nav)
|
||||
ObserveSelection(item, navEntryState) { selected ->
|
||||
HasNewItemsIcon(selected, item, accountViewModel, nav)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Composable
|
||||
private fun RowScope.HasNewItemsIcon(
|
||||
private fun ObserveSelection(
|
||||
route: Route,
|
||||
accountViewModel: AccountViewModel,
|
||||
navEntryState: State<NavBackStackEntry?>,
|
||||
nav: (Route, Boolean) -> Unit,
|
||||
content: @Composable (Boolean) -> Unit,
|
||||
) {
|
||||
val selected =
|
||||
content(
|
||||
navEntryState.value
|
||||
?.destination
|
||||
?.route
|
||||
?.startsWith(route.base) ?: false
|
||||
?.startsWith(route.base) ?: false,
|
||||
)
|
||||
}
|
||||
|
||||
@Composable
|
||||
private fun RowScope.HasNewItemsIcon(
|
||||
selected: Boolean,
|
||||
route: Route,
|
||||
accountViewModel: AccountViewModel,
|
||||
nav: (Route, Boolean) -> Unit,
|
||||
) {
|
||||
NavigationBarItem(
|
||||
alwaysShowLabel = false,
|
||||
icon = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user