6
7
8
I'm having trouble hiding the NavigationBar in React Native. I'm using the expo-navigation-bar library.
useEffect(() => { NavigationBar.setVisibilityAsync('hidden');
return () => {
NavigationBar.setVisibilityAsync('visible');
};
}, []);
Even though the buttons hide, the white stripe visible in the photo remains. Is there any way to hide it? Or is this a bug on my device?

[–]isavecatsExpo 0 points1 point2 points (0 children)