I would like to insert action-native-router-flux <Scene/> and tried to do the following, but I cannot go to <Scene component={Home}/> from <Scene component={Profile}/> :
<Scene component={Home} initial={true} key='home' title='Home' type='reset' > <Scene component={Profile} direction='vertical' key='sell' title='Sell' /> </Scene>
I would like to insert the Profile component inside the Home component, because it can only be accessed through the Home component.
So, how can I insert the Profile component inside the Home component correctly?
When I also go to the Profile component, it moves in the vertical direction, but when it tries to move to another component (e.g. Actions.test() ) that does not have direction='vertical' from Profile > it moves horizontally when it should be vertical, while pressing the return button in the Profile component moves backward with the vertical direction.
Since I switched to the Profile component vertically , how can I get the Profile component that must be unmounted vertically when navigating, even if you go to the component without direction='vertical' ?
javascript react-native react-jsx react-native-router-flux
user3259472
source share