我正在使用DrawerLayourAndroid
。我想在TouchableHighlight
中DrawerLayout
导航到另一个视图。这是DrawableLayout
的代码:
var drawerLayout = (
<View>
<TouchableHighlight onPress=
{()=>this.props.navigator.push({name:'secView', component:secView})}>
<Text>move</Text>
</TouchableHighlight>
</View>
);
但它有错误“undefined is not an object (evaluating '_this.props.navigator')
”。
我怎样才能使它发挥作用?
答案 0 :(得分:0)
我在发布这篇文章时使用了react-native的Navigator。我在这里使用react-native-router-flux解决了这个问题。 https://github.com/aksonov/react-native-router-flux
我在自定义抽屉中使用了Actions.name(params),它有效!