Velord
Velord
Any update ? If that will not be implemented, can you provide example how to achieve same functionality ? I mean how to achieve "routing" with current API ?
``` @Composable fun Transition( navigator: Navigator, modifier: Modifier = Modifier, content: ScreenTransitionContent = { it.Content() } ) { val transition: AnimatedContentTransitionScope.() -> ContentTransform = { when { navigator.lastEvent == StackEvent.Pop...
If you are trying to open new `Screen` from the tab you have 2 ways: 1) Open new `Screen` from the root `Navigator` 2) You should create inside each tab...
Indeed you can create your own Navigator. But my code is focused to add flexibility in Navigator itself level. Not at his child level, nor who will use it as...
"_targetState & initialState already cover the cases_" - its closed. "_TabNavigator, BottomSheetNavigator, MyCustomNavigator_" - they are focused to add functionality on UI application level. They add some UI features for...
In navigation library should not be any UI related things, that force developer to declare them especially when they are not going to be used. What if I don't want...