Raed Ghazal
01/04/2024, 2:48 PMTab
interface, now those tabs can navigate to other screens inside the tab, for this I wasn’t able to get LocalNavigator.current
and had to separate the tab from the screen, e.g. instead of HomeScreen
now I have HomeTab
that have this code
@Composable
override fun Content() {
Navigator(HomeScreen)
}
which allows the Home screen to navigate to other child screens, is this correct? with this approach now I have multiple navigators inside the app instead of one
its working fine so far but when I wanted to listen to navigations following this person’s code it didn’t work because I have more than one navigator and I can’t listen to all navigations from the main one
so if you have suggestions for different navigation listener I would be happy to hearbrandonmcansh
01/05/2024, 1:51 AMRaed Ghazal
01/05/2024, 7:20 PMRaed Ghazal
01/05/2024, 7:20 PMbrandonmcansh
01/05/2024, 7:23 PMRaed Ghazal
01/05/2024, 7:27 PMbrandonmcansh
01/05/2024, 7:34 PMbrandonmcansh
01/05/2024, 7:35 PMbrandonmcansh
01/05/2024, 7:35 PMRaed Ghazal
01/05/2024, 8:12 PMbrandonmcansh
01/05/2024, 8:37 PMbrandonmcansh
01/05/2024, 8:38 PMbrandonmcansh
01/05/2024, 8:38 PMevent
as an overridable val for base screenbrandonmcansh
01/06/2024, 12:32 AM