Fixed
Status Update
Comments
cl...@google.com <cl...@google.com>
lp...@google.com <lp...@google.com> #2
bulk comment, fyi: we have added icebox to all the tickets because it was suggested by blintz in order to prevent auto-close tickets. we want to keep our Compose tickets to remain opened.
see b/123001228#comment6
see
gs...@gmail.com <gs...@gmail.com> #3
So... Any updates after 2,5 years?
Description
Problem, while I tap each destination on my BottomNav it selects the destination and highlights them but without the ripple effect at first, when I reach the end of the list (or random item) the ripple takes effect and starts to lag the selection of each destination
Code
BottomNavigation(content = {
listItems.forEachIndexed { index, item ->
BottomNavigationItem(
icon = {
Icon(asset = item.icon)
},
label = { Text(item.title) },
onClick = {
selectedIndex.value = index
showMessage(context, "${item.title} selected")
},
selected = selectedIndex.value == index
)
}
})
Output