-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
60 lines (49 loc) · 1.67 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
import { StatusBar } from 'expo-status-bar';
import React, { useEffect, Component } from 'react';
import { AppState, StyleSheet, Text, View } from 'react-native';
import Navbar from './components/navbar'
import { NavigationContainer } from '@react-navigation/native';
import 'react-native-gesture-handler';
import Home from './components/home'
import { Container } from 'native-base'
import { createStackNavigator } from '@react-navigation/stack';
import Global from './components/global'
import Footer from './components/footer'
import State from './components/state'
import * as Font from 'expo-font';
import { AntDesign, Feather } from '@expo/vector-icons';
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs';
const Tab = createBottomTabNavigator();
const Stack = createStackNavigator();
export default function App() {
return (
<NavigationContainer>
<Navbar />
<Tab.Navigator>
<Tab.Screen name="Home" component={Home} options={
{
tabBarIcon: ({ color, size }) =>
<AntDesign name="home" color={color} size={size} />
}
} />
<Tab.Screen name="Global Stats" component={Global}
options={
{
tabBarIcon: ({ color, size }) =>
<Feather name="globe" color={color} size={size} />
}
}
/>
<Tab.Screen name="State Wise Stats" component={State}
options={
{
tabBarIcon: ({ color, size }) =>
<AntDesign name="infocirlceo" color={color} size={size} />
}
}
/>
</Tab.Navigator>
<Footer />
</NavigationContainer>
)
}