我正在使用react-native-svg,正如文档所述,可以在svg元素上触发onPress事件,但是它不起作用。
<Svg width={370} height={180} {...props} viewBox="0 0 385 185" >
<Path
d="M5.607 13.536l9.267 9.267a2.5 2.5 0 0 1-3.535 3.536L.732 15.732a2.497 2.497 0 0 1-.695-2.196 2.497 2.497 0 0 1 .695-2.197L11.34.732a2.5 2.5 0 0 1 3.535 3.536l-9.267 9.268z"
fill="white"
onPress={() => alert('Press on Circle')}
/>
</Svg>
然后我尝试了文档中编写的示例:
<Svg
height="100"
width="100"
>
<Circle
cx="50%"
cy="50%"
r="38%"
fill="red"
onPress={() => alert('Press on Circle')}
/>
</Svg>
但是作为第一个它不起作用
答案 0 :(得分:0)
此问题是由于panResponder引起的,因为它的优先级高于按钮,因此解决方案是不要始终从onMoveShouldSetPanResponderCapture返回true。 例如:
componentWillMount() {
this.panResponder = PanResponder.create({
onMoveShouldSetPanResponderCapture: this.onShouldDrag,
onPanResponderMove: Animated.event(
[null, { dx: this.state.pan.x }]
),
onPanResponderRelease: this.onReleaseItem,
onPanResponderTerminate: this.onReleaseItem,
});
}
onShouldDrag = (e, gesture) => {
const { dx } = gesture;
return Math.abs(dx) > 2;
}