React Native组件View,其作用等同于iOS中的UIView, Android中的android.view,或是网页中的<div>标签,它是所有组件的父组件。
补充知识
一、Flexbox弹性布局
一种全新的针对web和移动开发布局应运而生:Flex布局,可以简便、完整、响应式地实现各种页面布局。目前,它已经得到了所有浏览器的支持,这意味着,现在就能很安全地使用这项功能。
- FlexBox
flexible(形容词):能够伸缩或者很容易变化,以适应外界条件的变化
box(名词):通用的矩形容器。 - 弹性盒模型(The Flexible Box Module),又叫Flexbox,意为“弹性布局”,旨在通过弹性的方式来对齐和分布容器中内容的空间,使其能适应不同屏幕,为盒装模型提供最大的灵活性。
- Flex布局主要思想是:让容器有能力让其子项目能够改变其宽度、高度(甚至是顺序),以最佳方式填充可用空间:
React native中的FlexBox是这个规范的一个子集。
二、Flexbox的应用场景
- 浮动布局
- 各种机型屏幕的适配
- 水平和垂直居中
- 自动分配宽度
在CSS中,常规的布局是基于块和内联流方向,而Flex布局是基于flex-flow流
容器默认存在两根轴:水平的主轴(main axis)和垂直的交叉轴(cross axis)。主轴的开始位置(与边框的交叉点)叫做main start,结束位置叫做main end;交叉轴的开始位置叫做cross start,结束位置叫做cross end。
项目默认沿主轴排列,单个项目占据的主轴空间叫做main size,占据的交叉轴空间叫做cross size。
三、Flexbox的常用属性
- ** flexDirection:
row | row-reverse | column | column-reverse
**
该属性决定主轴的方向(即项目的排列方向)。
row:主轴为水平方向,起点在左端。
row-reverse:主轴为水平方向,起点在右端。
column(默认值):主轴为垂直方向,起点在上沿。
column-reverse:主轴为垂直方向,起点在下沿。```
-
justifyContent:
flex-start | flex-end | center | space-between | space-around
定义了伸缩项目在主轴线的对齐方式
flex-start(默认值):伸缩项目向一行的起始位置靠齐。
flex-end:伸缩项目向一行的结束位置靠齐。
center:伸缩项目向一行的中间位置靠齐。
space-between:两端对齐,项目之间的间隔都相等。
space-around:伸缩项目会平均地分布在行里,两端保留一半的空间。 -
alignItems:
flex-start | flex-end | center | baseline | stretch
定义项目在交叉轴上如何对齐,可以把其想像成侧轴(垂直于主轴)的“对齐方式”。
flex-start:交叉轴的起点对齐。
flex-end:交叉轴的终点对齐 。
center:交叉轴的中点对齐。
baseline:项目的第一行文字的基线对齐。
stretch(默认值):如果项目未设置高度或设为auto,将占满整个容器的高度。 - ** flexWrap:
nowrap | wrap | wrap-reverse
**
默认情况下,项目都排在一条线(又称"轴线")上。
flex-wrap属性定义,如果一条轴线排不下,如何换行。
wrap:换行,第一行在上方。
wrap-reverse:换行,第一行在下方。(和wrap相反)
> **元素属性**
- ** flex**
“flex-grow”、“flex-shrink”和“flex-basis”三个属性的缩写, 其中第二个和第三个参数(flex-shrink、flex-basis)是可选参数。
默认值为“0 1 auto”。
宽度 = 弹性宽度 * ( flexGrow / sum( flexGorw ) )
- **alignSelf: “auto | flex-start | flex-end | center | baseline | stretch”**
align-self属性允许单个项目有与其他项目不一样的对齐方式,可覆盖align-items属性。
默认值为auto,表示继承父元素的align-items属性,如果没有父元素,则等同于stretch。
>##**四、在React Native中使用Flexbox**
1. **获取当前屏幕的宽度、高度、分辨率**
引入
// 引入
var Dimensions = require('Dimensions');
var {width, height, scale} = Dimensions.get('window');
class CFlexBoxDemo3 extends Component {
render() {
return (
<View style={styles3.outViewStyle}>
<Text>当前屏幕的宽度:{Dimensions.get('window').width}</Text>
<Text>当前屏幕的高度:{Dimensions.get('window').height}</Text>
<Text>当前屏幕的分辨率:{Dimensions.get('window').scale}</Text>
</View>
);
}
};
const styles3 = StyleSheet.create({
outViewStyle:{
// 占满屏幕
flex:1,
// 主轴方向居中
justifyContent:'center',
// 侧轴方向居中
alignItems: 'center',
// 背景
backgroundColor:'red'
}
});
- **常用属性Demo演示-绝对定位和相对定位**
与css定位不同,在React Native中定位不需要再父组件中设置position属性。
class CFlexBoxDemo4 extends Component {
render() {
return (
<View style={styles4.outViewStyle}>
<Text>绝对定位</Text>
<View style={styles4.topViewStyle}>
<View style={styles4.innerViewStyle}></View>
</View>
<Text>相对定位</Text>
<View style={styles4.topViewStyle}>
<View style={styles4.innerViewStyle1}></View>
</View>
</View>
);
}
};
const styles4 = StyleSheet.create({
outViewStyle:{
marginTop:20,
width:width,
height:200,
backgroundColor:'red'
},
topViewStyle:{
width:width,
height:150,
backgroundColor:'yellow'
},
innerViewStyle:{
width:60,
height:60,
backgroundColor:'green',
// 绝对定位
position:'absolute',
top:0,
right:0
},
innerViewStyle1:{
width:60,
height:60,
backgroundColor:'green',
// 相对定位
position:'relative',
top:30,
right:-30
}
});