-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
93 lines (84 loc) · 2.29 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
87
88
89
90
91
92
93
import React from 'react';
import { Dimensions, Alert, Platform } from "react-native";
import { createAppContainer } from 'react-navigation';
import { createStackNavigator } from 'react-navigation-stack';
import { createBottomTabNavigator } from "react-navigation-tabs";
import { createDrawerNavigator } from 'react-navigation-drawer';
import { ThemeContextProvider } from './src/core/themeProvider';
import MainScreen from './src/screens/Main';
import SettingsScreen from './src/screens/Settings';
import FavoriteScreen from './src/screens/Favorite';
import NotificationScreen from './src/screens/Notification';
import SupportScreen from './src/screens/Support';
import TabBar from './src/components/TabBar';
import SideBar from './src/components/SideBar';
var { height, width } = Dimensions.get("window");
export const DEVICE = {
DEVICE_HEIGHT: height,
DEVICE_WIDTH: width
}
const TabNavigator = createBottomTabNavigator(
{
Main: MainScreen,
Favorite: FavoriteScreen,
Notification: NotificationScreen,
Settings: SettingsScreen,
Support: SupportScreen,
},
{
initialRouteKey: 'Main',
tabBarComponent: props => <TabBar {...props} />,
transitionConfig: () => ({
transitionSpec: {
duration: 0,
timing: Animated.timing,
easing: Easing.step0,
},
}),
},
);
const DrawerNavigator = createDrawerNavigator(
{
Tab: TabNavigator,
},
{
initialRouteKey: 'Tab',
contentComponent: SideBar,
headerMode: 'none',
drawerWidth: DEVICE.DEVICE_WIDTH < 500 ? DEVICE.DEVICE_WIDTH / 1.3 : DEVICE.DEVICE_WIDTH / 2,
drawerLockMode: 'locked-closed',
transitionConfig: () => ({
transitionSpec: {
duration: 0,
timing: Animated.timing,
easing: Easing.step0,
},
}),
},
)
const MainNavigator = createStackNavigator(
{
Drawer: DrawerNavigator
},
{
initialRouteName: "Drawer",
headerMode: "none",
transitionConfig: () => ({
transitionSpec: {
duration: 0,
timing: Animated.timing,
easing: Easing.step0,
},
}),
}
)
const AppContainer = createAppContainer(MainNavigator);
export default class App extends React.Component {
render() {
return (
<ThemeContextProvider>
<AppContainer />
</ThemeContextProvider>
);
}
}