我在我的项目中使用了 React Native Router Flux。如何在 Welcome 组件上触发 onRight 功能?我只能在 NavigationController 类上调用函数。
export default class NavigationController extends Component {
render() {
return (
<Drawer
...>
<Router>
<Scene key="root">
<Scene key="intro" passProps={true} drawer={this} hideNavBar={true} component={Intro}
initial={true}/>
<Scene key="welcome"
component={Welcome}
onRight={() => alert("right")}
rightButtonImage={require('./assets/plus_blue.png')}
/>
</Scene>
</Router>
</Drawer>
);
}
}