React-Native - FlexBox布局

弹性盒模型(The Flexible Box Module),又叫Flexbox,意为“弹性布局”,旨在通过弹性的方式来对齐和分布容器中内容的空间,使其能适应不同屏幕,为盒装模型提供最大的灵活性,Flexbox可以在不同屏幕尺寸上提供一致的布局结构。

React-Native使用FlexBox布局能够大大提升我们的开发效率FlexBox能做的有

  1. 适配屏幕;
  2. 快速垂直和水平居中
  3. 自动分配宽度和高度。

一、主轴和侧轴,标志着在主轴和侧轴上的布局方式,在React-Native中默认的主轴方式是竖直的,当然,也可以根据需要选择合适的对齐方式。

二、常见的属性

(1). flexDirection:(row | column)

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

export default class untitled extends Component {
    render() {
        return (
            <View style={styles.container}>

              <Text style={{backgroundColor:'red'}} >测试一</Text>
              <Text style={{backgroundColor:'yellow'}}>测试二</Text>
              <Text style={{backgroundColor:'gray'}}>测试三</Text>
              <Text style={{backgroundColor:'blue'}}>测试四</Text>

            </View>
        );
    }
}

const styles = StyleSheet.create({
    container: {
          backgroundColor:'skyblue',
      marginTop:100,
    }
});

AppRegistry.registerComponent('untitled', () => untitled);

看结果可知默认是竖直的

把样式代码改一下

const styles = StyleSheet.create({
    container: {
      backgroundColor:'skyblue',
      marginTop:100,
        flexDirection:'row', //添加了这行
    }
});

(2). justifyContent:(flex-startcenterflex-endspace-around以及space-between)来控制主轴的布局样式

 我们分别来试试这个属性

flex-start 默认就是这个样式

const styles = StyleSheet.create({
    container: {
      backgroundColor:'skyblue',
      marginTop:100,
      flexDirection:'row',
    justifyContent:'flex-start',
    }
});

center居中

flex-end

space-around 表示单个元素周边的间距 注意对比space-between

space-between表示两个元素之间 注意对比space-around

(3). alignItemsflex-startcenterflex-end以及stretch)这个是用来控制侧轴方向的对齐方式的,此时的侧轴是Y轴

我们再来吧代码改一下

export default class untitled extends Component {
    render() {
        return (
            <View style={styles.container}>

              <Text style={{backgroundColor:'red',height:80}} >测试一</Text>
              <Text style={{backgroundColor:'yellow',height:90}}>测试二</Text>
              <Text style={{backgroundColor:'gray',height:50}}>测试三</Text>
              <Text style={{backgroundColor:'blue',height:100}}>测试四</Text>

            </View>
        );
    }
}

给每个item都加上一个高度 也就是默认flex-start的显示

center

flex-end

stretch

注意:要使stretch选项生效的话,子元素在次轴方向上不能有固定的尺寸。以下面的代码为例:只有将子元素样式中的width: 50去掉之后,alignItems: 'stretch'才能生效。

export default class untitled extends Component {
    render() {
        return (
            <View style={styles.container}>

              <Text style={{backgroundColor:'red'}} >测试一</Text>
              <Text style={{backgroundColor:'yellow'}}>测试二</Text>
              <Text style={{backgroundColor:'gray'}}>测试三</Text>
              <Text style={{backgroundColor:'blue'}}>测试四</Text>

            </View>
        );
    }
}

const styles = StyleSheet.create({
    container: {
      backgroundColor:'skyblue',
      marginTop:100,
      flexDirection:'row',
        alignItems:'stretch',
        height:100,

    }
});

(4). flexWrapnowrap | wrap),这个是用来当主轴显示不下的时候该怎么显示的

nowrap,默认不换行

wrap,显示不下换行

export default class untitled extends Component {
    render() {
        return (
            <View style={styles.container}>

              <Text style={{backgroundColor:'red',width:90}} >测试一</Text>
              <Text style={{backgroundColor:'yellow',width:100}}>测试二</Text>
              <Text style={{backgroundColor:'gray',width:200}}>测试三</Text>
              <Text style={{backgroundColor:'blue',width:300}}>测试四</Text>

            </View>
        );
    }
}

const styles = StyleSheet.create({
    container: {
      backgroundColor:'skyblue',
      marginTop:100,
      flexDirection:'row',
        alignItems:'stretch',
        flexWrap:'wrap',

    }
});

(5). flex控制显示范围的

宽度 = 弹性宽度 * ( flexGrow / sum( flexGorw ) )

flexGrow是占的份额,sum( flexGorw )是总的份额,也就是对应元素在父控件位置所占的比例

export default class untitled extends Component {
    render() {
        return (
            <View style={styles.container}>

              <Text style={{backgroundColor:'red',flex:1}} >测试一</Text>
              <Text style={{backgroundColor:'yellow',flex:2}}>测试二</Text>
              <Text style={{backgroundColor:'gray',flex:1}}>测试三</Text>
              <Text style={{backgroundColor:'blue',flex:4}}>测试四</Text>

            </View>
        );
    }
}

sum( flexGorw ) = 1 + 2 + 1 + 4 = 8
所以:
测试一 1 / 8;
测试二 2 / 8;
测试三 1 / 8;
测试四 4 / 8;

(6). alignSelf,给某个item添加例外的

export default class untitled extends Component {
    render() {
        return (
            <View style={styles.container}>

              <Text style={{backgroundColor:'red',flex:1,height:100}} >测试一</Text>
              <Text style={{backgroundColor:'yellow',flex:2,height:50}}>测试二</Text>
              <Text style={{backgroundColor:'gray',flex:1,height:80}}>测试三</Text>
              <Text style={{backgroundColor:'blue',flex:4,height:30}}>测试四</Text>

            </View>
        );
    }
}

const styles = StyleSheet.create({
    container: {
      backgroundColor:'skyblue',
      marginTop:100,
      flexDirection:'row',
        alignItems:'flex-end',



    }
});

像上面的在侧轴上是flex-end,如果只想让测试四居中怎么办呢,就可以使用alignSelf属性

export default class untitled extends Component {
    render() {
        return (
            <View style={styles.container}>

              <Text style={{backgroundColor:'red',flex:1,height:100}} >测试一</Text>
              <Text style={{backgroundColor:'yellow',flex:2,height:50}}>测试二</Text>
              <Text style={{backgroundColor:'gray',flex:1,height:80}}>测试三</Text>
              <Text style={{backgroundColor:'blue',flex:4,height:30,alignSelf:'center'}}>测试四</Text>

            </View>
        );
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 160,585评论 4 365
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 67,923评论 1 301
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 110,314评论 0 248
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 44,346评论 0 214
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 52,718评论 3 291
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 40,828评论 1 223
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 32,020评论 2 315
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 30,758评论 0 204
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 34,486评论 1 246
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 30,722评论 2 251
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 32,196评论 1 262
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 28,546评论 3 258
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 33,211评论 3 240
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 26,132评论 0 8
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 26,916评论 0 200
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 35,904评论 2 283
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 35,758评论 2 274

推荐阅读更多精彩内容