Mam dziwny problem. W mojej natywnej aplikacji React, jeśli onPress
ustawię na View
to zdarzenie, nie jest wyzwalane, ale jeśli ustawię to samo na Text
wnętrze View
, zostanie uruchomione . Czego tu brakuje?
<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>
Dlaczego tak jest? Czy to problem z React Native? Używam wersji 0.43