I have few scenes. one of scenes have few sub-scenes. how can i navigate
I've found that you can switch to inner tabs if you navigate to the tabbar
first, e.g.:
<Button onPress={() => {
Actions.tabbar({type:ActionConst.RESET});
Actions.courses();
}} title="See Courses" />
The first scene transition resets the scene to your tab bar, and would by default show your initial
scene, the second transition then replaces your current scene due to how react-native-router-flux handles tab scene transitions.
I actually answered a very similar question here. The problem is that from the context of login
you'd have access to Actions.tabbar
and it would then route you to either a nested scene with the initial
prop set to true, or the first nested scene in the stack. To see an example of what I am talking about refer to the link I included in the first line of this answer.
Hope this helps! :)