检测单击按钮

时间:2017-10-17 09:57:46

标签: reactjs react-native

我正在尝试在我的应用中创建标题。我安装了模块react-native-elements并使用了他们的header。每件事情都运转正常,但我无法检测到标题上的点击次数。我尝试这样做时出现语法错误

leftComponent={{ icon: 'menu', color: '#4c788', onPress={() => this.myFunction()} }}

leftComponent={{ icon: 'menu', color: '#4c788', onPress= this.myFunction()} }}

leftComponent={{ icon: 'menu', color: '#4c788', onPress={() => myFunction()} }}

leftComponent={{ icon: 'menu', color: '#4c788', onPress= myFunction()} }}

您对如何实现这一目标有所了解吗?

1 个答案:

答案 0 :(得分:2)

您使用onPress代替=

设置:

尝试:

leftComponent = {
  { 
    icon: 'menu', 
    color: '#4c788', 
    onPress: () => this.myFunction()
  } 
}