onPress からイベント オブジェクトを返すのに問題があります。私は何が欠けていますか?
constructor(props) {
super(props)
this.state = {
user: null,
}
this.testEvent = this.testEvent.bind(this)
}
testEvent(e, id) {
console.log(e)
}
<TouchableWithoutFeedback style={styles.rightGroupContainer}
onPress={(e) => this.testEvent(e, id)}>
<Image source={this.closeIcon} style={styles.closeIcon}></Image>
</TouchableWithoutFeedback>