我正在尝试在我的应用中创建标题。我安装了模块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()} }}
您对如何实现这一目标有所了解吗?
答案 0 :(得分:2)
您使用onPress
代替=
:
值
尝试:
leftComponent = {
{
icon: 'menu',
color: '#4c788',
onPress: () => this.myFunction()
}
}