React-Native - FlexBox布局

彈性盒模型(The Flexible Box Module),又叫Flexbox厨剪,意為“彈性布局”伯顶,旨在通過彈性的方式來對(duì)齊和分布容器中內(nèi)容的空間礁蔗,使其能適應(yīng)不同屏幕螃宙,為盒裝模型提供最大的靈活性,F(xiàn)lexbox可以在不同屏幕尺寸上提供一致的布局結(jié)構(gòu)置济。

React-Native使用FlexBox布局能夠大大提升我們的開發(fā)效率FlexBox能做的有

  1. 適配屏幕解恰;
  2. 快速垂直和水平居中
  3. 自動(dòng)分配寬度和高度。

一浙于、主軸和側(cè)軸护盈,標(biāo)志著在主軸和側(cè)軸上的布局方式,在React-Native中默認(rèn)的主軸方式是豎直的羞酗,當(dāng)然腐宋,也可以根據(jù)需要選擇合適的對(duì)齊方式。

二檀轨、常見的屬性

(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'}} >測(cè)試一</Text>
              <Text style={{backgroundColor:'yellow'}}>測(cè)試二</Text>
              <Text style={{backgroundColor:'gray'}}>測(cè)試三</Text>
              <Text style={{backgroundColor:'blue'}}>測(cè)試四</Text>

            </View>
        );
    }
}

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

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

看結(jié)果可知默認(rèn)是豎直的

把樣式代碼改一下

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

(2). justifyContent:(flex-start胸竞、centerflex-end参萄、space-around以及space-between)來控制主軸的布局樣式

 我們分別來試試這個(gè)屬性

flex-start 默認(rèn)就是這個(gè)樣式

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

center居中

flex-end

space-around 表示單個(gè)元素周邊的間距 注意對(duì)比space-between

space-between表示兩個(gè)元素之間 注意對(duì)比space-around

(3). alignItemsflex-start卫枝、centerflex-end以及stretch)這個(gè)是用來控制側(cè)軸方向的對(duì)齊方式的拧揽,此時(shí)的側(cè)軸是Y軸

我們?cè)賮戆纱a改一下

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

              <Text style={{backgroundColor:'red',height:80}} >測(cè)試一</Text>
              <Text style={{backgroundColor:'yellow',height:90}}>測(cè)試二</Text>
              <Text style={{backgroundColor:'gray',height:50}}>測(cè)試三</Text>
              <Text style={{backgroundColor:'blue',height:100}}>測(cè)試四</Text>

            </View>
        );
    }
}

給每個(gè)item都加上一個(gè)高度 也就是默認(rèn)flex-start的顯示

center

flex-end

stretch

注意:要使stretch選項(xiàng)生效的話剃盾,子元素在次軸方向上不能有固定的尺寸。以下面的代碼為例:只有將子元素樣式中的width: 50去掉之后淤袜,alignItems: 'stretch'才能生效痒谴。

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

              <Text style={{backgroundColor:'red'}} >測(cè)試一</Text>
              <Text style={{backgroundColor:'yellow'}}>測(cè)試二</Text>
              <Text style={{backgroundColor:'gray'}}>測(cè)試三</Text>
              <Text style={{backgroundColor:'blue'}}>測(cè)試四</Text>

            </View>
        );
    }
}

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

    }
});

(4). flexWrapnowrap | wrap),這個(gè)是用來當(dāng)主軸顯示不下的時(shí)候該怎么顯示的

nowrap,默認(rèn)不換行

wrap铡羡,顯示不下?lián)Q行

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

              <Text style={{backgroundColor:'red',width:90}} >測(cè)試一</Text>
              <Text style={{backgroundColor:'yellow',width:100}}>測(cè)試二</Text>
              <Text style={{backgroundColor:'gray',width:200}}>測(cè)試三</Text>
              <Text style={{backgroundColor:'blue',width:300}}>測(cè)試四</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 )是總的份額,也就是對(duì)應(yīng)元素在父控件位置所占的比例

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

              <Text style={{backgroundColor:'red',flex:1}} >測(cè)試一</Text>
              <Text style={{backgroundColor:'yellow',flex:2}}>測(cè)試二</Text>
              <Text style={{backgroundColor:'gray',flex:1}}>測(cè)試三</Text>
              <Text style={{backgroundColor:'blue',flex:4}}>測(cè)試四</Text>

            </View>
        );
    }
}

sum( flexGorw ) = 1 + 2 + 1 + 4 = 8
所以:
測(cè)試一 1 / 8;
測(cè)試二 2 / 8;
測(cè)試三 1 / 8;
測(cè)試四 4 / 8;

(6). alignSelf烦周,給某個(gè)item添加例外的

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

              <Text style={{backgroundColor:'red',flex:1,height:100}} >測(cè)試一</Text>
              <Text style={{backgroundColor:'yellow',flex:2,height:50}}>測(cè)試二</Text>
              <Text style={{backgroundColor:'gray',flex:1,height:80}}>測(cè)試三</Text>
              <Text style={{backgroundColor:'blue',flex:4,height:30}}>測(cè)試四</Text>

            </View>
        );
    }
}

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



    }
});

像上面的在側(cè)軸上是flex-end尽爆,如果只想讓測(cè)試四居中怎么辦呢,就可以使用alignSelf屬性

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

              <Text style={{backgroundColor:'red',flex:1,height:100}} >測(cè)試一</Text>
              <Text style={{backgroundColor:'yellow',flex:2,height:50}}>測(cè)試二</Text>
              <Text style={{backgroundColor:'gray',flex:1,height:80}}>測(cè)試三</Text>
              <Text style={{backgroundColor:'blue',flex:4,height:30,alignSelf:'center'}}>測(cè)試四</Text>

            </View>
        );
    }
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末读慎,一起剝皮案震驚了整個(gè)濱河市漱贱,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌夭委,老刑警劉巖幅狮,帶你破解...
    沈念sama閱讀 211,348評(píng)論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡崇摄,警方通過查閱死者的電腦和手機(jī)擎值,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,122評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來逐抑,“玉大人鸠儿,你說我怎么就攤上這事〔薨保” “怎么了进每?”我有些...
    開封第一講書人閱讀 156,936評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)腐巢。 經(jīng)常有香客問我品追,道長(zhǎng),這世上最難降的妖魔是什么冯丙? 我笑而不...
    開封第一講書人閱讀 56,427評(píng)論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮遭京,結(jié)果婚禮上胃惜,老公的妹妹穿的比我還像新娘。我一直安慰自己哪雕,他們只是感情好船殉,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,467評(píng)論 6 385
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著斯嚎,像睡著了一般利虫。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上堡僻,一...
    開封第一講書人閱讀 49,785評(píng)論 1 290
  • 那天糠惫,我揣著相機(jī)與錄音,去河邊找鬼钉疫。 笑死硼讽,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的牲阁。 我是一名探鬼主播固阁,決...
    沈念sama閱讀 38,931評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼城菊!你這毒婦竟也來了备燃?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,696評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤凌唬,失蹤者是張志新(化名)和其女友劉穎并齐,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,141評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡冀膝,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,483評(píng)論 2 327
  • 正文 我和宋清朗相戀三年唁奢,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片窝剖。...
    茶點(diǎn)故事閱讀 38,625評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡麻掸,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出赐纱,到底是詐尸還是另有隱情脊奋,我是刑警寧澤,帶...
    沈念sama閱讀 34,291評(píng)論 4 329
  • 正文 年R本政府宣布疙描,位于F島的核電站诚隙,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏起胰。R本人自食惡果不足惜久又,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,892評(píng)論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望效五。 院中可真熱鬧地消,春花似錦、人聲如沸畏妖。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽戒劫。三九已至半夷,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間迅细,已是汗流浹背巫橄。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評(píng)論 1 265
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留疯攒,地道東北人嗦随。 一個(gè)月前我還...
    沈念sama閱讀 46,324評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像敬尺,于是被迫代替她去往敵國和親枚尼。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,492評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容