-
I have installed this package on expo dev build and created a new build, removed expo status bar and navigation bar from codebase and added single <SystemBars ... /> from this library. Also I am not using a safe area. But for the position absolute and bottom 0 it sticks on top of navigation bars like as always. Without hiding the navigation bar how to achieve this behavior ? |
Beta Was this translation helpful? Give feedback.
Answered by
zoontek
Oct 14, 2024
Replies: 1 comment 4 replies
-
@mirik999 Did you added the plugin? Could you provide a reproduction? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@mirik999 On your device, it has fallback to "light scrim", because you are using button navigation in light mode (
#fff
, 90% opacity).It's visible, but you should be able to draw under. See, if I switch to button navigation on the simulator:
Fully transparent is only available with gesture navigation, as automatic navigation bar style (based on contrast) also only work with gesture navigation, and it's not possible to programmaticaly update navigation bar style when targetting SDK 35.
See the AndroidX core edge-to-edge implementation, that does the same thing. (the light scrim)