这里那里
我的 React Native 代码有问题,我是 React 编程新手,所以无法正确读取错误:-(
希望有人能提供帮助
export default class NavigationBar extends Component {
_handleNavigationRequest = () => {
this.refs.nav.push({
component: Settings,
title: 'Genius',
passProps: { myProp: 'genius' },
});
}
render() {
return (
<NavigatorIOS barTintColor='#50C26B' titleTextColor='#fff' tintColor='#fff'
initialRoute={{
component: Genius,
title: 'Happy Genius',
rightButtonTitle: 'Add',
onRightButtonPress: () => this._handleNavigationRequest(),
}}
style={style.navBarStyle}
/>
);
}
}