Skip to content

Commit

Permalink
Further work on homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
CodexAdrian committed Nov 8, 2021
1 parent f15d642 commit b3574e0
Show file tree
Hide file tree
Showing 7 changed files with 7,586 additions and 22 deletions.
8 changes: 4 additions & 4 deletions App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ import {createBottomTabNavigator} from "@react-navigation/bottom-tabs";
import HomePage from "./pages/HomePage";
import {NavigationContainer} from "@react-navigation/native";
import {Foundation} from "@expo/vector-icons";
import {darkgrey, grey, regisred} from "./styles/GlobalTheme";
import {colors} from "./styles/GlobalTheme";

const Tab = createBottomTabNavigator()

export default () => {
return (
<NavigationContainer>
<Tab.Navigator screenOptions={({route}) => ({
tabBarActiveTintColor: regisred,
tabBarInactiveTintColor: grey,
tabBarActiveTintColor: colors.regisRed,
tabBarInactiveTintColor: colors.grey,
headerShown: false,
tabBarIcon: ({focused, color, size}) => {
let iconName;
Expand All @@ -25,7 +25,7 @@ export default () => {
return <Foundation name={iconName} size={size} color={color}/>
},
tabBarStyle: {
backgroundColor: darkgrey,
backgroundColor: colors.darkGrey,
shadowOpacity: 0,
borderTopWidth: 0,
elevation: 0
Expand Down
1 change: 1 addition & 0 deletions assets/aortiz22_schedule_download (2).csv

Large diffs are not rendered by default.

Loading

0 comments on commit b3574e0

Please sign in to comment.