I am using React Navigation 5 for implementing tab bar. Then I set horizontal and bottom margin for tab bar by using code bellow:
<NavigationContainer>
<Tab.Navigator
tabBarOptions={{
style: {
backgroundColor: Colors.GRAY,
marginBottom: 6,
marginHorizontal: 6,
},
}}
>
</Tab.Navigator>
</NavigationContainer>
However, I am seeing white color on sides of the tab bar (which comes from root view, as tab bar has margins). How can I change the background color of the root view to the color I want?