-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
85 lines (62 loc) · 2.5 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
import 'react-native-gesture-handler'
import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityIcons';
import { createMaterialBottomTabNavigator } from '@react-navigation/material-bottom-tabs';
const Tab = createMaterialBottomTabNavigator();
import { createStackNavigator } from '@react-navigation/stack';
import { StatusBar } from 'expo-status-bar';
import { NavigationContainer } from '@react-navigation/native';
const Stack = createStackNavigator()
// screens
import Home from "./screens/Home"
import Notes from "./screens/Notes"
import TimeTable from './screens/timetable';
function BottomNav(){
return (
<Tab.Navigator initialRouteName="main">
<Tab.Screen
name="notes"
component={Notes}
title=""Notes
options={{
tabBarLabel: 'Notes',
tabBarIcon: ({ color }) => (
<MaterialCommunityIcons name="book" color={color} size={26} />
),
}}
/>
<Tab.Screen
name="main"
component={Home}
options={{
tabBarLabel: 'Home',
title:"Home",
tabBarIcon: ({ color }) => (
<MaterialCommunityIcons name="home" color={color} size={26} />
),
}}
/>
<Tab.Screen
name="timetable"
component={TimeTable}
options={{
tabBarLabel: 'timetable',
tabBarIcon: ({ color }) => (
<MaterialCommunityIcons name="timetable" color={color} size={26} />
),
}}
/>
</Tab.Navigator>
)
}
export default function App() {
return (
<>
<StatusBar />
<NavigationContainer>
<Stack.Navigator initialRouteName="Home">
<Stack.Screen name="Home" options={{ title: 'KITS SPARK' }} component={BottomNav} />
</Stack.Navigator>
</NavigationContainer>
</>
);
}