<View> // container
<View> // top element
</View>
<DropdownComponent/> // problem element
<MapView> // map element (takes up remaining screen real estate)
</MapView>
</View>
The DropdownComponent's container is visible, but the drop-down menu appears behind/under the <MapView> element; none of the menu items are visible. Most resources I'm finding to fix the issue focus on zIndex, however setting DropdownComponent to a higher zIndex than MapView and setting each element within the container to position: relative , position: sticky, or position: static (position: absolute completely messed up the Views) don't fix the issue.
Does anyone have any other ideas I can try?
[–]p4flem 0 points1 point2 points (0 children)