Fix header color

This commit is contained in:
Bill Thornton 2020-04-22 11:06:24 -04:00
parent 5a584b4c82
commit 5e66f8a558

View File

@ -25,7 +25,7 @@ const theme = {
...DarkTheme.colors,
primary: Colors.tintColor,
background: Colors.backgroundColor,
text: Colors.tabText,
text: Colors.textColor,
border: 'transparent'
}
};
@ -52,6 +52,9 @@ function Main() {
screenOptions={({ route }) => ({
tabBarIcon: ({ color, size }) => TabIcon(route.name, color, size)
})}
tabBarOptions={{
inactiveTintColor: Colors.tabText
}}
>
<Tab.Screen name='Home' component={HomeScreen} />
<Tab.Screen name='Settings' component={SettingsScreen} />