我在我的反应原生项目中使用bubbleMenu,并且我在使用反应原生标记的麻烦。
在我的所有地图标记中,我想在用户按下bubbleMenu时显示 这是我的工作
<MapView.Marker
coordinate={marker.coordinate}
title={marker.title}
description={marker.description}
onCalloutPress={this.markerClick}>
<MapView.Callout tooltip style={styles.customView}>
<BubbleMenu
items={items}
openBtn={openBtn}
show={show}
style={styles.menu}
/>
</MapView.Callout>
</MapView.Marker>
当我点击我的标记时,我可以看到我的气泡菜单,但我无法点击它 任何想法?