RN目前主要支持flexbox的如下6个属性

2017-09-08  本文已影响20人  基本密码宋

如下:

下面就是实战了哦

flexDirection

flexDirection 在rn中默认是从上到下排列的。

export default class AwesomeProject extends Component {
  render() {
    return (
      <View style={{backgroundColor:'red',margin:20}}>
            <View style={{width:40,height:40,backgroundColor:'white' ,margin:10}}>
                <Text style={{fontSize:16}}>1</Text>
            </View>
          <View style={{width:40,height:40,backgroundColor:'white' ,margin:10}}>
              <Text style={{fontSize:16}}>2</Text>
          </View>
          <View style={{width:40,height:40,backgroundColor:'white' ,margin:10}}>
              <Text style={{fontSize:16}}>3</Text>
          </View>
          <View style={{width:40,height:40,backgroundColor:'white' ,margin:10}}>
              <Text style={{fontSize:16}}>4</Text>
          </View>
      </View>
    );
  }
}

里面没有定义 任何属性 默认是从上到下 flexDirection:'column' 效果图为:

QQ截图20170918224445.png

flexDirection:'column-reverse' 从下到上

QQ截图20170918225541.png

flexDirection:'row' 从左到右的排列

QQ截图20170918224903.png

flexDirection:'row-reverse' 从右到左的排列

QQ截图20170918225043.png

下面放下 一个整体的代码

export default class AwesomeProject extends Component {
  render() {
    return (
      <View style={{backgroundColor:'red',margin:20,flexDirection:'column-reverse'}}>
            <View style={{width:40,height:40,backgroundColor:'white' ,margin:10}}>
                <Text style={{fontSize:16}}>1</Text>
            </View>
          <View style={{width:40,height:40,backgroundColor:'white' ,margin:10}}>
              <Text style={{fontSize:16}}>2</Text>
          </View>
          <View style={{width:40,height:40,backgroundColor:'white' ,margin:10}}>
              <Text style={{fontSize:16}}>3</Text>
          </View>
          <View style={{width:40,height:40,backgroundColor:'white' ,margin:10}}>
              <Text style={{fontSize:16}}>4</Text>
          </View>
      </View>
    );
  }
}

flex-wrap 是否自动换行

为每个 小的view的宽度设为 140了。横向排列

QQ截图20170918230141.png

这样出现的效果图是:``flexWrap:'nowrap'``` 默认是这样的 不管怎么样 都不换行

QQ截图20170918230210.png

很明显已经不能全部显示了
flexWrap:'wrap' 进行自动换行的

QQ截图20170918230555.png

wrap-reverse 此属性不支持。。。

justifyContent 在主轴线上的对齐方式)

默认为:justifyContent:'flex-start' 从左到右的对齐方式

QQ截图20170918232219.png

justifyContent:'flex-end' 从右到左的对齐方式 (元素的最右侧和主轴的最右侧进行对其)

QQ截图20170918232332.png

justifyContent:'center' 交叉轴上以中间对齐 两个箭头的到左右的距离是相等的

QQ截图20170918233448.png

justifyContent:'space-between' 平均分布在界面上 中间的距离是相等的

QQ截图20170918233809.png

justifyContent:'space-around' 最左侧元素到左边的距离 最右侧元素到右边的距离 是元素间距离的一半

QQ截图20170918234215.png

alignItems 伸缩项目在交叉轴上的对齐方式

flex-start(默认) 在纵轴上开始的位置上进行排列

QQ截图20170919225515.png

这个是变化的布局 代码

下面是具体的展示效果

QQ截图20170919225636.png

flex-end在纵轴上结尾为基线排列

QQ截图20170919225818.png

center在纵轴开始进行居中排列

QQ截图20170919225954.png

alignItems:'stretch' 进行拉伸
如果是 横向排列的(flexDirection:'row')就不好限制子控件的高度了。

QQ截图20170919230517.png

反之 纵向排列(flexDirection:'column')就不要限制它的宽度了。

QQ截图20170919230634.png

进行子视图的属性

alignSelf 子视图的排列方式,相当于重写父视图的 alignItems

详细请看

QQ截图20170919231811.png

alignSelf:'flex-end' 右对齐

QQ截图20170919231606.png

alignSelf:'center' 中间对齐

QQ截图20170919231728.png

flex 权重比例 就是伸缩的能力 默认为0

QQ截图20170919232213.png

效果图为


QQ截图20170919232246.png

borderWidth:10指定视图的边框是10
borderColor:'blue' 指定视图的边框颜色是蓝色

QQ截图20170919232743.png

效果图是:

QQ截图20170919232821.png

还有其他的属性 请看

QQ截图20170919232857.png

视图的padding margin

和Android 一样的

QQ截图20170919233607.png

给父视图进行设置 padding值

left right top bottom 都可以设置的属性 意思是偏离的距离

上一篇下一篇

猜你喜欢

热点阅读