DrawerLayoutAndroid上的TouchableHighlight

时间:2016-04-26 11:13:38

标签: android react-native drawerlayout

我正在使用DrawerLayourAndroid。我想在TouchableHighlightDrawerLayout导航到另一个视图。这是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')”。 我怎样才能使它发挥作用?

1 个答案:

答案 0 :(得分:0)

我在发布这篇文章时使用了react-native的Navigator。我在这里使用react-native-router-flux解决了这个问题。 https://github.com/aksonov/react-native-router-flux

我在自定义抽屉中使用了Actions.name(params),它有效!