react-native-navigation
react-native-navigation copied to clipboard
Bottom tab changes color at the bottom of a page
🐛 Bug Report
The bottom tabs change to a black background color when scrolled all the way to the bottom in iOS.
To Reproduce
Scroll to bottom of a page with bottom tabs active.
Expected behavior
The bottom tabs to stay the color they are supposed to be (white in my case)
Actual Behavior
The bottom tabs background color changes to black
https://user-images.githubusercontent.com/22151095/158785644-d097c540-357f-4841-b6f9-8d2146725192.mp4
Your Environment
- React Native Navigation version: 7.26.0
- React Native version: 0.63.3
- Platform(s) (iOS, Android, or both?): iOS
- Device info (Simulator/Device? OS version? Debug/Release?): iPhone 13 Simulator
I have the same issue as well
same problem here : /
hi, I did fixe doing this one:
- set
layout: { backgroundColor: the_color_here }
in thesetDefaultOptions
method when call the registerAppLunchedListener.
example:
Navigation.events().registerAppLaunchedListener(() => {
Navigation.setDefaultOptions({
...
layout: { backgroundColor: '#fff' }
...
same issue here