-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
86 lines (75 loc) · 1.72 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
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow
*/
import React from 'react';
import {createAppContainer} from 'react-navigation';
import {createStackNavigator} from 'react-navigation-stack';
import {createBottomTabNavigator} from 'react-navigation-tabs';
import Icon from 'react-native-vector-icons/FontAwesome';
import Home from './Home';
import FlagStatus from './FlagStatus';
import FlagCode from './FlagCode';
import Trivia from './Trivia';
const HomeStack = createStackNavigator(
{
Home: { screen: Home },
FlagStatus: { screen: FlagStatus },
},
{
navigationOptions: {
tabBarLabel: 'Home!',
showIcon: true,
tabBarIcon: ({ focused, tintColor }) => {
return <Icon name="home" size={25} color={tintColor} />;
},
},
}
);
const HistoryStack = createStackNavigator(
{
History: {
screen: FlagCode,
},
},
{
navigationOptions: {
title: 'History & Etiquette',
showIcon: true,
tabBarIcon: ({ focused, tintColor }) => {
return <Icon name="flag-o" size={25} color={tintColor} />;
},
},
}
);
const TriviaStack = createStackNavigator(
{
History: {
screen: Trivia,
},
},
{
navigationOptions: {
title: 'Trivia',
showIcon: true,
tabBarIcon: ({ focused, tintColor }) => {
return <Icon name="trophy" size={25} color={tintColor} />;
},
},
}
);
const bottomTabNavigator = createBottomTabNavigator(
{
Home: { screen: HomeStack, },
History: { screen: HistoryStack, },
Trivia: { screen: TriviaStack },
},
{
initialRouteName: 'Home',
}
);
const App = createAppContainer(bottomTabNavigator);
export default App;