react native如何实现点击获取一个组件的props值?
编程小白,请教大神。如下,用RNexpo写了一个组件,里面有个svg组件画了个圆,功能想实现在屏幕上点击这个圆的时候,能够获得这个圆的cx、cy这些props值,请问该如...
编程小白,请教大神。
如下,用RN expo写了一个组件,里面有个svg组件画了个圆,功能想实现在屏幕上点击这个圆的时候,能够获得这个圆的cx、cy这些props值,请问该如何实现?
```
import React, { Component } from 'react';
import { View } from 'react-native';
import Svg, { Circle} from 'react-native-svg';
class BoardScreen extends Component{
constructor(){
super();
};
render(){
return(
<View>
<Svg height="400" width="400">
<Circle onPress={***??????***} cx="20" cy="20" r="8" stroke="#EDEDED" fill="#000" fillOpacity="0" />
</Svg>
</View>
)
``` 展开
如下,用RN expo写了一个组件,里面有个svg组件画了个圆,功能想实现在屏幕上点击这个圆的时候,能够获得这个圆的cx、cy这些props值,请问该如何实现?
```
import React, { Component } from 'react';
import { View } from 'react-native';
import Svg, { Circle} from 'react-native-svg';
class BoardScreen extends Component{
constructor(){
super();
};
render(){
return(
<View>
<Svg height="400" width="400">
<Circle onPress={***??????***} cx="20" cy="20" r="8" stroke="#EDEDED" fill="#000" fillOpacity="0" />
</Svg>
</View>
)
``` 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询