-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
94 lines (89 loc) · 2.53 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import React, { useEffect } from "react";
import { NavigationContainer } from "@react-navigation/native";
import { createBottomTabNavigator } from "@react-navigation/bottom-tabs";
import { createStackNavigator } from "@react-navigation/stack";
import { MaterialCommunityIcons } from "@expo/vector-icons";
import { Home, Profile, Explore, Onboarding } from "./screens";
import AsyncStorage from "@react-native-async-storage/async-storage";
const Tab = createBottomTabNavigator();
const Stack = createStackNavigator();
export default function App() {
const [isOnboarded, setIsOnboarded] = React.useState(false);
useEffect(() => {
AsyncStorage.getItem("onboarded")
.then((val) => {
console.log(val, "this is val");
if (val === "true") {
setIsOnboarded(true);
}
})
.catch((err) => {
console.log(err);
});
}, []);
const TabNavigator = () => {
return (
<Tab.Navigator
screenOptions={{
headerShown: false,
tabBarStyle: {
height: 90,
},
tabBarActiveTintColor: "#000000",
}}
>
<Tab.Screen
name="Home"
component={Home}
options={{
tabBarIcon: makeIconRender("home"),
tabBarLabelStyle: { marginTop: -10, marginBottom: 5 },
}}
/>
<Tab.Screen
name="Explore"
component={Explore}
options={{
tabBarIcon: makeIconRender("food"),
tabBarBadge: 2,
tabBarBadgeStyle: { backgroundColor: "red", left: 10 },
tabBarLabelStyle: { marginTop: -10, marginBottom: 5 },
}}
/>
<Tab.Screen
name="Profile"
component={Profile}
options={{
tabBarIcon: makeIconRender("account"),
tabBarLabelStyle: { marginTop: -10, marginBottom: 5 },
}}
/>
</Tab.Navigator>
);
};
return (
<>
<NavigationContainer>
<Stack.Navigator>
{!isOnboarded && (
<Stack.Screen
name="onboarding"
component={Onboarding}
options={{ headerShown: false }}
/>
)}
<Stack.Screen
name="app"
component={TabNavigator}
options={{ headerShown: false }}
/>
</Stack.Navigator>
</NavigationContainer>
</>
);
}
const makeIconRender = (name) => {
return ({ color }) => (
<MaterialCommunityIcons name={name} color={color} size={30} />
);
};