I have a certain dropdown view that I want to stay on top of all other views. It currently looks like this.
I've tried setting a style of "elevation: 1" which fixes the UI but the dropdown stays untouchable if there were originally views on top of it.
The area that's not clickable should be clickable as well:
To explain it more using a gif.
Here's the github issue link with the code.
Edit: Toggling the inspector on and off fixes the issue. But it's not a viable solution for production.
I've wrapped the dropdown picker and the below components under a ScrollView with a nestedScrollEnabled and it's working.
<ScrollView nestedScrollEnabled={true} />
<DropDownPicker ... />
</ScrollView>