-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
86 lines (79 loc) · 1.88 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
/* @flow */
import React, { Component } from 'react';
import {
View,
Text,
StyleSheet,
} from 'react-native';
import FontAwesome5 from 'react-native-vector-icons/FontAwesome5'
import { createBottomTabNavigator, createStackNavigator } from 'react-navigation'
import { globalStyles } from './stylesheet'
import { Provider } from 'react-redux'
import { configureStore } from './store'
import HomeStack from './screens/HomeStack'
import MarketScreen from './screens/MarketScreen'
const store = configureStore()
const BottomStack = createBottomTabNavigator(
{
Home: HomeStack,
News: MarketScreen,
},
{
navigationOptions: ({ navigation }) => ({
tabBarIcon: ({ focused, tintColor }) => {
const { routeName } = navigation.state
let iconName;
if (routeName === 'Home') {
iconName = 'home'
} else if (routeName === 'News') {
iconName = 'file-invoice-dollar'
}
return <FontAwesome5 name={iconName} solid size={20} color={tintColor}/>;
}
}),
tabBarOptions: {
activeTintColor: 'black',
inactiveTintColor: 'rgb(198, 191, 191)',
},
}
)
const RootStack = createStackNavigator(
{
Route: {screen: BottomStack}
},
{
navigationOptions: () => ({
headerTitle: () => (
<View style={styles.header}>
<FontAwesome5 name='cannabis' solid size={20} style={styles.icon}/>
<Text style={styles.title}>
marq.
</Text>
</View>
),
headerStyle:{backgroundColor:'yellow'},
})
}
)
export default class App extends Component {
render() {
return (
<Provider store={ store }>
<RootStack />
</Provider>
);
}
}
const styles = StyleSheet.create({
title: {
fontSize: 20,
fontWeight: 'bold'
},
icon: {
marginRight: 5,
},
header: {
margin: 10,
flexDirection: 'row'
}
})