-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.android.js
31 lines (30 loc) · 971 Bytes
/
index.android.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
'use strict'
import React from 'react'
import {AppRegistry} from 'react-native'
import {Navigator} from 'react-native-deprecated-custom-components'
import Main from './js/Main'
import Constants from './js/Constants'
// import Test from './js/store/Test';
// import Test from './js/view/Test';
class SimpleOne extends React.Component {
render() {
return (
<Navigator
initialRoute={{name:'首页',component:Main}}
configureScene={()=>{
return Navigator.SceneConfigs.PushFromRight;
}}
renderScene={(route,navigator)=>{
let Component = route.component;
return <Component {...route.passProps} navigator={navigator} route={route}/>;
}}
/>
)
}
}
//是否关闭log日志
if(!Constants.DEBUG){
console.log = function() {}
}
// console.disableYellowBox = true 忽略警告弹窗
AppRegistry.registerComponent('SimpleOne', () => SimpleOne);