您的位置:首页 > Web前端 > React

[Wondgirl]从零开始学React Native之View(四)

2016-12-23 15:04 423 查看


index.ios.js如下:

/**
* Sample React Native App
* https://github.com/facebook/react-native * @flow
*/

import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View,
PixelRatio
} from 'react-native';

export default class demo extends Component {
render() {
return (
<View style={styles.container}>
<View style={[styles.item,styles.center]}>
<Text style={styles.font}>机票</Text>
</View>
<View style={[styles.item,styles.lineLeftRight]}>
<View style={[styles.center,{flex:1},styles.lineCenter]}>
<Text style={styles.font}>火车票</Text>

</View>
<View style={[styles.center,{flex:1}]}>
<Text style={styles.font}>接送机</Text>
</View>
</View>
<View style={[styles.item,styles.lineLeftRight]}>
<View style={[styles.center,{flex:1},styles.lineCenter]}>
<Text style={styles.font}>汽车票</Text>

</View>
<View style={[styles.center,{flex:1}]}>
<Text style={styles.font}>用车</Text>
</View>
</View>
</View>
);
}
}

//样式
const styles = StyleSheet.create({
item:{
flex:1,
height:80,
borderColor:'blue',
borderWidth:1,
backgroundColor:'#ff0067'
},
container: {
borderWidth:1,
borderColor:'red',
flexDirection:'row',
marginTop:40,
marginLeft:20,
marginRight:20
},
font:{
color:'#fff',
fontSize:16,
fontWeight:'bold'
},
center:{
justifyContent:'center',
alignItems:'center'

},
lineCenter:{
borderBottomWidth:1/PixelRatio.get(),
borderColor:'#fff'

},
lineLeftRight:{
borderLeftWidth:1/PixelRatio.get(),
borderRightWidth:1/PixelRatio.get(),
borderColor:'#fff'
}
});

AppRegistry.registerComponent('demo', () => demo);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息