https://kotlinlang.org logo
#compose
Title
# compose
r

robnik

12/28/2020, 8:31 PM
I'd like to use BottomNavigation where each tab remembers its navigation state. Is this supported with Compose Navigation?
👀 2
k

Kshitij Patil

12/29/2020, 9:49 PM
Idk about implementation in Compose Navigation but you can definitely build a system on top of Current Jetpack Navigation. Here's a reference implementation: https://github.com/chrisbanes/tivi/blob/main/common-ui-view/src/main/java/app/tivi/extensions/MultipleBackStackNavigationExtensions.kt
i

Ian Lake

12/29/2020, 11:25 PM
Multiple back stacks, when implemented, will be supported in both a fragment based Navigation and Compose based
👀 1
👍 2
s

Shakil Karim

12/30/2020, 8:19 PM
@Ian Lake Is there any plan to have a single lifecycle for fragment and it's view?
2 Views