如何给react-native art中的component添加事件?

发布于 2022-09-06 01:37:09 字数 1137 浏览 15 评论 0

如下面代码所示,假如我想用Shape封装成一个Rect,那么如何给Rect添加相应的onPress事件呢?
PS: 不是给最外面一层容器套一个Touchablexxx,而是给Shape这类react-native art中的component添加事件。(试了PanResponder,好像也不行。。。)


const teset = () => {

    const teseRects = [
        {x: 0, y: 0, width: 40, height: 40},
        {x: 60, y: 0, width: 40, height: 40},
        {x: 60, y: 60, width: 40, height: 40},
        {x: 0, y: 60, width: 40, height: 40},
    ];

    return (
        <Surface>
            {teseRects.map((item, index) => {
                return (
                    <Rect
                        {...item}
                        fill={'red'}
                        onPress={() => {alert(index)}}
                        />
                );
            })}
        </Surface>
    );
}

const Rect = (props) => {

    const {x, y, width, height, fill, onPress} = props;
    
    const path = new Path()
        .moveTo(x, y)
        .lineTo(x + width, y)
        .lineTo(x + width, y+ height)
        .lineTo(x, y + height)
        .close();
        
    return <Shape d={path} fill={fill}/>;
};

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文