我想嵌套 react-native-router-flux<Scene/>
并尝试以下操作,但我无法导航到<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>
我想将组件嵌套Profile
在组件内Home
,因为它只能通过Home
组件访问。
那么如何正确地将组件嵌套Profile
在组件内Home
呢?
当我也导航到Profile
组件时,它会按vertical
方向导航,但是当它尝试从组件导航到另一个Actions.test()
没有direction='vertical'
设置的组件(例如)Profile
时,它应该在垂直时水平导航,而在Profile
组件内点击返回按钮导航返回vertical
方向。
由于我导航到Profile
component vertically
,如何在导航时Profile
卸载组件vertically
,即使导航到没有组件的组件direction='vertical'
?