setting top bar background color with mergeOption does not work
push screen with top bar background color transparent
mergeOption for top bar background color with any color
Try this:
Navigation.mergeOptions(componentId, {
topBar: {
background: {
color: '#00ff00',
translucent: false
}
}
});
When topBar.background.color
receive transparent color it also set translucent: true
.
We might consider removing it
@yogevbd it worked. thanks
Most helpful comment
Try this:
When
topBar.background.color
receive transparent color it also settranslucent: true
.We might consider removing it