代码拉取完成,页面将自动刷新
同步操作将从 lclz/oscApp 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/**
* Sample React Native App
* https://github.com/facebook/react-native
*/
'use strict';
import NavigatorWrapper from "./ios_views/common/NavigatorWrapper"
import News from "./ios_views/news/news_list"
import Home from "./home"
var React = require('react-native');
var {
AppRegistry,
StyleSheet,
Text,
View,
TabBarIOS,
Navigator,
NavigatorIOS
} = React;
var oscApp = React.createClass({
getInitialState:function(){
return {
component:Home,
}
},
_renderContent:function(contentTab,color){
return (
<View style={styles.contentTab}>
<Text style={[styles.contentText,{color:color}]}>{contentTab}</Text>
</View>
)
},
render: function() {
return (
// <Navigator
// initialRoute={{name: '', component: this.state.component, index:0}}
// configureScene={()=>{return Navigator.SceneConfigs.FloatFromBottom;}}
// renderScene={(route, navigator) => {
// const Component = route.component;
// return (
// <View style={{flex: 1}}>
// <Component navigator={navigator} route={route} {...route.passProps}/>
// </View>
// );
// }}
// />
<NavigatorIOS
style={styles.container}
initialRoute={{
component: this.state.component,
title: '综合',
passProps: {
},
}}
tintColor="#FFFFFF"
barTintColor="#4ead7d"
titleTextColor="#FFFFFF"
translucent={false}
/>
);
}
});
var styles = StyleSheet.create({
container:{
flex:1,
elevation:1
},
contentTab:{
flex:1,
alignItems:'center',//水平居中
justifyContent:'center'//垂直居中
},
contentText:{
},
});
AppRegistry.registerComponent('oscApp', () => oscApp);
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。