/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
import React, { Component } from 'react';
import {
Platform,
StyleSheet,
Text,
View
} from 'react-native';
export default class App extends Component<{}> {
render() {
return (
<View style={styles.container}>
<View style={[styles.item,styles.itemOne]}>
<Text style={styles.itemText}>
1
</Text>
</View>
<View style={[styles.item,styles.itemTwo]}>
<Text style={styles.itemText}>
2
</Text>
</View>
<View style={[styles.item,styles.itemThree]}>
<Text style={styles.itemText}>
3
</Text>
</View>
</View>
);
}
}
const styles=StyleSheet.create({
container:{
//名字为 container的具体样式
backgroundColor:'#eae7ff',
flex:1,
paddingTop:23,
flexDirection:'column',//主轴的方向
/**
* flexDirection 属性
* row 从左到右的方向
* column 从上到下的方向(默认 手机嘛)
*/
justifyContent:'space-around' ,
/**
* justifyContent 属性
*
* 默认 的事 flex-start
* center-居中
* flex-end-显示到屏幕的下面
* space-between->平均分配在界面上
* space-around 中间的间距=两边的边距相加
*/
alignItems:'flex-end'
/**
* alignItems 属性
* flex-start (默认值)交叉轴上以开始位置对齐
* stretch (默认值)已拉伸的效果展示
* center 交叉轴上以中间对齐(竖轴上)
* flex-end 交叉轴上已结束位置对齐 (右对齐)
*/
},
item:{
backgroundColor:'#fff',
borderWidth:1,
borderColor:'#6435c9',
margin:6,
flex:1 //可以将每个属性是item的View进行平均分配
},
itemOne:{
alignSelf:'flex-start'
/**
* alignSelf 用来设置单独的伸缩项目在交叉轴上的对齐方式。会覆盖默认的对齐方式。
* auto 默认的
* flex-start 左对齐
* flex-end 右对齐
* center 中间对其
*/
},
itemTwo:{
alignSelf:'center'
},
itemThree:{
flex:2//单独的设置某个View的占的比例
},
itemText:{
fontSize:33,
fontFamily:'helvetica Neue',
fontWeight:'200',
color:'#6435c9',
padding:30
}
})
RN中布局样式
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 在本章和后面的章节中,将通过具体的Demo来介绍相关内容。 Demo只介绍大体的用法。一些细节的东西,都在代码注释...
- 使用表格来定义表单布局时,可在表单中实现更为统一的空间布局,无论文本框之前的标签文本长短如何,所有的文本框都是在垂...