React-native-maps 标注周围的阴影

发布于 2025-01-10 05:55:54 字数 846 浏览 3 评论 0原文

我正在尝试在标记的标注上添加阴影。我当前实现的方法有我想要的阴影,但它不遵循视图的 borderRadius 。

我认为为具有透明背景的阴影创建一个单独的视图可以解决问题,但事实并非如此。我在下面包含了一些代码以及此处的小吃示例,它重现了我的问题准确。作为 IOS 运行。

<Callout tooltip style={{ padding: 3 }}>
  <View style={styles.bubbleShadow}>
    <View style={styles.bubble}>
      <Text styles={{ fontSize: 16, marginBottom: 5 }}>{marker.name}</Text>
    </View>
  </View>
</Callout>


 bubble: {
    height: scale(100),
    width: scale(200),
    borderRadius: 10,
    backgroundColor: 'white',
    overflow:'hidden'
    
  },
  bubbleShadow:{
    borderRadius: 10,
    backgroundColor: 'transparent',
    shadowColor: '#000',
    shadowOffset: { width: 2, height: 2 },
    shadowOpacity: 1,
  },

I am trying to add a shadow on a callout for a marker. The current way I have implemented has the shadow I want but it does not follow the borderRadius of the View.

I thought creating a separate view for the shadow with a transparent background would do the trick but it didn't. I have included some code below as a well as a snack example here that reproduces my issue exactly. Run as IOS.

<Callout tooltip style={{ padding: 3 }}>
  <View style={styles.bubbleShadow}>
    <View style={styles.bubble}>
      <Text styles={{ fontSize: 16, marginBottom: 5 }}>{marker.name}</Text>
    </View>
  </View>
</Callout>


 bubble: {
    height: scale(100),
    width: scale(200),
    borderRadius: 10,
    backgroundColor: 'white',
    overflow:'hidden'
    
  },
  bubbleShadow:{
    borderRadius: 10,
    backgroundColor: 'transparent',
    shadowColor: '#000',
    shadowOffset: { width: 2, height: 2 },
    shadowOpacity: 1,
  },

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

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

发布评论

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