나는 이상한 문제에 직면 해있다. 내 네이티브 응용 프로그램을 반응에서 내가 설정 한 경우, onPress
이벤트를 View
이 트리거되지 않습니다하지만 난에 동일하게 설정하면 Text
내부 View
, 그것은 발생합니다. 내가 여기서 무엇을 놓치고 있습니까?
<View style={{backgroundColor: "red", padding: 20}}>
<Text onPress={()=> {
console.log('works');
}
}>X</Text>
</View>
<View style={{backgroundColor: "red", padding: 20}} onPress={()=> {
console.log('does not work');
}
}>
<Text>X</Text>
</View>
왜 그렇습니까? React Native의 문제입니까? 버전 0.43을 사용하고 있습니다.