This issue was originally opened in react-native-controllers
Have I missed something, or is the iOS tint effect overriding the value entered for "tabBarBackgroundColor"?
Trying to set the background to absolute white, but always rendering grey.
Hm, I think this is happened by apply UIVisualEffect under tab bar. I'm disable it in my app 馃槃
@savelichalex how you disabled? using xcode?
Is there a temporary fix to this issue
http://stackoverflow.com/questions/42922835/issue-while-adding-uivisualeffect-to-navigation-bar
@hackable what exactly is the fix? A bit more context would be appreciated
@mobinni try to add tabBarTranslucent: false
to tabsStyle
like this
Navigation.startTabBasedApp({
tabs,
tabsStyle: {
tabBarBackgroundColor: '#000',
tabBarTranslucent: false,
},
})
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
If you believe the issue is still relevant, please test on the latest Detox and report back. Thank you for your contributions.
The issue has been closed for inactivity.
Most helpful comment
@mobinni try to add
tabBarTranslucent: false
totabsStyle
like this