I'm trying to set the screen background to transparent using this navigator property:
screenBackgroundColor: 'transparent'
In addition, I changed the root view background color to Green in XCode like this:
self.window.backgroundColor = [UIColor greenColor];
I'm expecting to see the Green background without any interference . When running in Simulator I see a black rectangle with some opacity and a gradient toward the green color on the margins... (please see screenshot below) how to fix that? Maybe I'm missing some flag??
black rectangle instead of green background
I'm also using these other navigator style properties:
navBarTranslucent: true
navBarTransparent: true,
navBarNoBorder: true,
drawUnderNavBar: true
navBarTranslucent:true,
navBarBlur: false,
here I try to set the NavBar to Red background color and it still not working:
navbar background color red instead of transparent - still not working