Open NguyenPhatBG opened 4 years ago
Write the style out of tabBarOptions that work for me
<Tab.Navigator
style={{
backgroundColor: 'tomato',
}},
tabBarOptions={{
....
}}
tabBar={(props) => (
<AnimatedTabBar
preset="material"
tabs={tabs}
iconSize={20}
duration={500}
{...props}
/>
Below is my code: <Tab.Navigator tabBarOptions={{ style: { backgroundColor: 'tomato', }, }} tabBar={(props) => ( <AnimatedTabBar preset="material" tabs={tabs} iconSize={20} duration={500} {...props} /> )}