|
@@ -1,49 +1,26 @@
|
|
|
-/**
|
|
|
- * Sample React Native App
|
|
|
- * https://github.com/facebook/react-native
|
|
|
- *
|
|
|
- * @format
|
|
|
- * @flow
|
|
|
- */
|
|
|
+import React from 'react';
|
|
|
+import { AppRegistry } from 'react-native';
|
|
|
+import { Provider } from 'react-redux';
|
|
|
+import { createStore, applyMiddleware } from 'redux';
|
|
|
|
|
|
-import React, {Component} from 'react';
|
|
|
-import {Platform, StyleSheet, Text, View} from 'react-native';
|
|
|
+import AppReducer from './src/reducers';
|
|
|
+import { AppNavigator, middleware } from './src/navigators/AppNavigator';
|
|
|
|
|
|
-const instructions = Platform.select({
|
|
|
- ios: 'Press Cmd+R to reload,\n' + 'Cmd+D or shake for dev menu',
|
|
|
- android:
|
|
|
- 'Double tap R on your keyboard to reload,\n' +
|
|
|
- 'Shake or press menu button for dev menu',
|
|
|
-});
|
|
|
+const store = createStore(AppReducer, applyMiddleware(middleware));
|
|
|
|
|
|
-type Props = {};
|
|
|
-export default class App extends Component<Props> {
|
|
|
+console.log(store)
|
|
|
+
|
|
|
+class HuiLiaoApp extends React.Component {
|
|
|
+
|
|
|
render() {
|
|
|
return (
|
|
|
- <View style={styles.container}>
|
|
|
- <Text style={styles.welcome}>Welcome to React Native!</Text>
|
|
|
- <Text style={styles.instructions}>To get started, edit App.js</Text>
|
|
|
- <Text style={styles.instructions}>{instructions}</Text>
|
|
|
- </View>
|
|
|
+ <Provider store={store}>
|
|
|
+ <AppNavigator />
|
|
|
+ </Provider>
|
|
|
);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-const styles = StyleSheet.create({
|
|
|
- container: {
|
|
|
- flex: 1,
|
|
|
- justifyContent: 'center',
|
|
|
- alignItems: 'center',
|
|
|
- backgroundColor: '#F5FCFF',
|
|
|
- },
|
|
|
- welcome: {
|
|
|
- fontSize: 20,
|
|
|
- textAlign: 'center',
|
|
|
- margin: 10,
|
|
|
- },
|
|
|
- instructions: {
|
|
|
- textAlign: 'center',
|
|
|
- color: '#333333',
|
|
|
- marginBottom: 5,
|
|
|
- },
|
|
|
-});
|
|
|
+AppRegistry.registerComponent('huiliaoJmessage', () => HuiLiaoApp);
|
|
|
+
|
|
|
+export default HuiLiaoApp;
|