-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
78 lines (74 loc) · 1.69 KB
/
index.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
import {Navigation} from 'react-native-navigation';
import theme from './src/theme';
import screens from './src/screens';
import {Provider} from 'react-redux';
import {ThemeProvider} from 'styled-components/native';
import {store} from './src/store';
import React from 'react';
for (const key in screens) {
Navigation.registerComponent(
screens[key].identifier,
() => props => (
<Provider store={store}>
<ThemeProvider theme={theme}>
{React.createElement(screens[key].component, props, null)}
</ThemeProvider>
</Provider>
),
() => screens[key].component,
);
}
Navigation.events().registerAppLaunchedListener(() => {
Navigation.setDefaultOptions({
topBar: {
visible: false,
drawBehind: true,
backButton: {
color: theme.colors.black,
title: 'Back',
},
background: {
color: theme.colors.white,
},
noBorder: true,
},
bottomTabs: {
visible: true,
drawBehind: false,
backgroundColor: theme.colors.white,
},
bottomTab: {
iconColor: theme.colors.black,
textColor: theme.colors.black,
selectedIconColor: theme.colors.action,
selectedTextColor: theme.colors.action,
},
});
Navigation.setRoot({
root: {
bottomTabs: bottomTabs,
},
});
});
const bottomTabs = {
id: 'BottomTabs',
children: [
{
stack: {
children: [
{
component: {
name: screens.home.identifier,
},
},
],
options: {
bottomTab: {
text: 'Home',
icon: require('./assets/homeIcon.png'),
},
},
},
},
],
};