-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathApp.js
47 lines (45 loc) · 1.22 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
import React from "react";
import { StyleSheet, View } from "react-native";
import { TabNavigator } from "react-navigation";
import { Provider } from "react-redux";
import store from "./store";
import WelcomeScreen from "./screens/WelcomeScreen";
import NewsScreen from "./screens/NewsScreen";
import SettingsScreen from "./screens/SettingsScreen";
import NavigationStateNotifier from "./utils/NavigationStateNotifier";
export default class App extends React.Component {
render() {
const MainNavigator = TabNavigator(
{
welcome: { screen: WelcomeScreen },
news: { screen: NewsScreen },
settings: { screen: SettingsScreen }
},
{
navigationOptions: {
tabBarVisible: false
},
swipeEnabled: false
}
);
return (
<Provider store={store}>
<View style={styles.container}>
<MainNavigator
onNavigationStateChange={(prevState, currentState) => {
NavigationStateNotifier.onNavigationStateChange(
prevState,
currentState
);
}}
/>
</View>
</Provider>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1
}
});