-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
37 lines (35 loc) · 1.02 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
import { StatusBar } from 'expo-status-bar';
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs';
import { NavigationContainer } from '@react-navigation/native';
import MainPage from './MainPage';
import SettingsPage from './SettingsPage'
import { Ionicons, Entypo } from '@expo/vector-icons';
const Tab = createBottomTabNavigator();
export default function App() {
return (
<NavigationContainer>
<Tab.Navigator>
<Tab.Screen
name="Main"
component={MainPage}
options={{
headerShown: false,
tabBarIcon: ({ color, size }) => (
<Entypo name="man" size={24} color="black" />
),
}}
/>
<Tab.Screen
name="Pocket Jesus"
component={SettingsPage}
options={{
headerShown: false,
tabBarIcon: () => (
<Entypo name="book" size={24} color="black" />
),
}}
/>
</Tab.Navigator>
</NavigationContainer>
);
}