-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
66 lines (60 loc) · 1.79 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
import React from "react"
import { Text } from "react-native"
import { createAppContainer, createSwitchNavigator } from "react-navigation"
import { createStackNavigator } from 'react-navigation-stack'
import { createMaterialBottomTabNavigator } from "react-navigation-material-bottom-tabs"
import { Feather } from '@expo/vector-icons'
import HomeScreen from "./src/screens/HomeScreen"
import GameScreen from "./src/screens/GameScreen"
import ResultScreen from "./src/screens/ResultScreen"
import StatisticsScreen from "./src/screens/StatisticsScreen"
import { Provider as TimerProvider } from './src/context/TimerContext'
const styles = {
labelStyle: {
fontFamily: 'Roboto',
fontSize: 15,
color: '#1A237E'
}
}
const navigator = createSwitchNavigator({
GameFlow: createStackNavigator({
MainFlow: createMaterialBottomTabNavigator({
Home: {
screen: HomeScreen,
navigationOptions: {
tabBarLabel: <Text style={styles.labelStyle}>Home</Text>,
tabBarIcon: <Feather name="home" size={25} color='#1A237E' />
}
},
Statistics: {
screen: StatisticsScreen,
navigationOptions: {
tabBarLabel: <Text style={styles.labelStyle}>Statistics</Text>,
tabBarIcon: <Feather name="bar-chart-2" size={25} color='#1A237E' />
}
}
},
{
initialRouteName: "Home",
order: ["Home", "Statistics"],
barStyle: {
backgroundColor: "white",
height: 70,
justifyContent: "center"
},
shifting: true
}),
Game: GameScreen,
},
{
initialRouteName: 'MainFlow',
headerMode: 'none'
}),
Result: ResultScreen
})
const App = createAppContainer(navigator)
export default () => (
<TimerProvider>
<App />
</TimerProvider>
)