I am facing an interesting scenario where a button with zIndex: 5
is positioned on top of an Interactable.View with zIndex: 19
.
EDIT: Although the button appears to be on top, it is visible but not responsive (lack of tap functionality).
Below is the code snippet where I have marked the button and interactable.view for reference:
map.js
// Code sample here
style.js
// Style definitions here
Despite setting different z-index values, why is the order not being respected? How can I ensure that the interactable.view covers the button properly?
EDIT: This issue only seems to occur on Android devices.