我面临一个奇怪的问题。在我的本机应用程序中,如果我未将onPress
事件设置View
为触发,但如果将其设置为Text
inside 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