react-native-select-dropdown icon indicating copy to clipboard operation
react-native-select-dropdown copied to clipboard

Open dropdown triggers navigation bar showing and overlay doesn't cover whole view

Open harryfos opened this issue 10 months ago • 1 comments

Android specific:

On the app I'm working on the view covers the entire screen, with the navigation bar being transparent.

Originally when opening the dropdown the navigation bar would turn black however I realised that because of the use of the RN modal I had to set the navgiationBarColor to match transparent in the styles.xml and then the modal would inherit it. (This is the line I added inside AppTheme): <item name="android:navigationBarColor">@android:color/transparent</item>

However the overlay doesn't cover the navigation bar area so it results in the view looking like this:

Screenshot 2024-04-02 at 12 44 58

Is it possible to extend the overlay? I presume it's because the modal is not covering this area.

Thanks in advance for your advice!

harryfos avatar Mar 31 '24 08:03 harryfos