父视图的四个属性
- flexDirection 布局方向
- column(默认)从左到右
- row 从上到下
- column-reverse 从右到左
- row-reverse 从下到上
- flexWrap
- nowrap (默认)超过屏幕不换行
- wrap 超过屏幕换行
- justifyContent 决定视图x轴位置
- flex-start (默认)从左到右
- flex-end 从右到左
- center 居中
- space-between 两端对齐
- space- around 平分局中
- alignItems 决定视图y轴位置
- flex-start (默认)从上到下
- flex-end 从下到上
- strength 拉伸
- center 局中
子视图的两个属性
- autoSelf
- auto (默认),使用父视图的alignItems的值,如果没有,默认为strength
- 与alignItems取值一样
- flex,相当于权值
- 0(默认)
- 其他数字,数字越大,权值越大
其他属性
- width和heigh
- 边框border开头
- 外边居margin开头
- 内边居padding开头
- 边缘left等
- 定位
- relative (默认)相当位置
- absolute
网友评论