-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAppNavigator.js
115 lines (106 loc) · 2.56 KB
/
AppNavigator.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
import React from 'react';
import { createAppContainer } from "react-navigation";
import { createStackNavigator } from "react-navigation-stack";
import { createBottomTabNavigator } from 'react-navigation-tabs';
import { Icon } from "native-base";
import topNewsScreen from "./src/screens/TopNewsScreen";
import profileScreen from "./src/screens/ProfileScreen";
import selectedNewsScreen from "./src/screens/SelectedNewsScreen";
import newsDetailsScreen from "./src/screens/NewsDetailsScreen";
const topNewsScreenStack = createStackNavigator(
{
TopNewsScreen: { screen: topNewsScreen },
NewsDetailsScreen: { screen: newsDetailsScreen },
},
{
headerMode: "none",
initialRouteName: "TopNewsScreen"
},
{
transitionConfig: () => ({
transitionSpec: {
duration: 0,
timing: Animated.timing,
easing: Easing.step0
}
})
}
);
const customNewsScreenStack = createStackNavigator(
{
SelectedNewsScreen: { screen: selectedNewsScreen },
NewsDetailsScreen: { screen: newsDetailsScreen },
},
{
headerMode: "none",
initialRouteName: "SelectedNewsScreen"
},
{
transitionConfig: () => ({
transitionSpec: {
duration: 0,
timing: Animated.timing,
easing: Easing.step0
}
})
}
);
const profileScreenStack = createStackNavigator(
{
ProfileScreen: { screen: profileScreen },
},
{
headerMode: "none",
initialRouteName: "ProfileScreen"
},
{
transitionConfig: () => ({
transitionSpec: {
duration: 0,
timing: Animated.timing,
easing: Easing.step0
}
})
}
);
const tabs = createBottomTabNavigator({
Top: {
screen: topNewsScreenStack,
navigationOptions: {
title: "Top News",
tabBarIcon: ({ tintColor }) => (
<Icon
type="Entypo"
name="news"
color={tintColor} />
)
}
},
Custom: {
screen: customNewsScreenStack,
navigationOptions: {
tabBarLabel: "Preferences",
tabBarIcon: ({ tintColor }) => (
<Icon
type="MaterialIcons"
name="rss-feed"
color={tintColor} />
)
}
}
,
Profile: {
screen: profileScreenStack,
navigationOptions: {
tabBarLabel: "Profile",
tabBarIcon: ({ tintColor }) => (
<Icon
type="AntDesign"
name="user"
color={tintColor} />
)
}
}
});
const Container = createAppContainer(tabs);
export default Container;