File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
feature/main/src/main/kotlin/com/ninecraft/booket/feature/main/screens Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ fun BottomNavigation(
3232 },
3333 ) { innerPadding ->
3434 NavigableCircuitContent (
35- navigator = state.childNavigator ,
36- backStack = state.childBackStack ,
35+ navigator = state.navigator ,
36+ backStack = state.backStack ,
3737 modifier = Modifier
3838 .fillMaxSize()
3939 .padding(innerPadding),
Original file line number Diff line number Diff line change @@ -43,8 +43,8 @@ class BottomNavigationPresenter @AssistedInject constructor(
4343 }
4444
4545 return BottomNavigationUiState (
46- childBackStack = childBackStack,
47- childNavigator = delegateNavigator,
46+ backStack = childBackStack,
47+ navigator = delegateNavigator,
4848 currentTab = currentTab,
4949 eventSink = ::handleEvent,
5050 )
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ import com.slack.circuit.runtime.CircuitUiState
66import com.slack.circuit.runtime.Navigator
77
88data class BottomNavigationUiState (
9- val childBackStack : SaveableBackStack ,
10- val childNavigator : Navigator ,
9+ val backStack : SaveableBackStack ,
10+ val navigator : Navigator ,
1111 val currentTab : MainTab ? ,
1212 val eventSink : (BottomNavigationUiEvent ) -> Unit ,
1313) : CircuitUiState
You can’t perform that action at this time.
0 commit comments