ReactNative之Flex布局

一般使用ReactNative开发App,一般都采用Flex布局,使用这套布局就非常快。
Flex简介
Flex又叫弹性布局,会把当前组件看做一个容器,他的所有子组件都是他容器中的成员,通过Flex,就能迅速的布局容器中的成员。
使用场景:当想快速布局一个组件中所有子组件的时候,可以使用Flex布局

Flex主轴和侧轴
Flex中有两个主要的概念:主轴和侧轴
主轴与侧轴的关系:相互垂直的。
主轴:决定容器中子组件默认的布局方向:水平,垂直
侧轴:决定容器中子组件与主轴垂直的布局方向比如主轴水平,那么子组件默认就是水平布局排布,侧轴就是控制子组件在垂直方向的布局

flexDirection属性
flexDirection:决定主轴的方向,水平或者垂直,这样子组件就会水平排布或者垂直排布
flexDirection共有四个值,在RN中默认为column。

row(默认值):主轴为水平方向,从左向右。依次排列row-reverse:主轴为水平方向,从右向左依次排列column:主轴为垂直方向,默认的排列方式,从上向下排列column-reverse:主轴为垂直方向,从下向上排列

使用:

export default class ReactDemo extends Component {
   render() {
      return ( 
       <View style={styles.rootView}> 
         <Text style={[styles.text1Style,styles.baseTextStyle]}>1</Text>  
         <Text style={[styles.text1Style,styles.baseTextStyle]}>2</Text> 
         <Text style={[styles.text2Style,styles.baseTextStyle]}>3</Text> 
         <Text style={[styles.text3Style,styles.baseTextStyle]}>4</Text> 
       </View> 
       );
     }
  }
 const styles = StyleSheet.create({
      rootView:{backgroundColor:'darkorange', flex:1, flexDirection:'row' 
     },   
     baseTextStyle:{ backgroundColor:'deepskyblue', width:50, height:50,
     fontSize:15, textAlign:'center', margin:20}
      }
    );

效果
row

row.png

row-reverse

row-reverse.png

column

column.png

column-reverse

column-reverse .png

flexWrap属性
flexWrap:决定子控件在父视图内是否允许多行排列。
flexWrap共有两个值,默认为nowrap。

nowrap 组件只排列在一行上,可能导致溢出。wrap 组件在一行排列不下时,就进行多行排列

使用

render() {
    return ( 
        <View style={styles.rootView}> 
       <Text style={[styles.text1Style,styles.baseTextStyle]}>1</Text> 
       <Text style={[styles.text1Style,styles.baseTextStyle]}>2</Text> 
       <Text style={[styles.text2Style,styles.baseTextStyle]}>3</Text> 
       <Text style={[styles.text3Style,styles.baseTextStyle]}>4</Text> 
     </View> ); 
    }
}
const styles = StyleSheet.create({
   rootView:{ backgroundColor:'darkorange', flex:1, flexDirection:'row', 
   flexWrap:'wrap' }, baseTextStyle:{ backgroundColor:'deepskyblue', 
   width:75, height:50, fontSize:15, textAlign:'center', margin:20, 
 }});

效果
nowrap

nowrap.png

wrap

wrap.png

justifyContent
justifyContent:决定子组件在主轴中具体布局,是靠左,还是居中等
justifyContent共有五个值,默认为flex-start

flex-start: 子组件向主轴起点对齐,如果主轴水平,从左开始,主轴垂直,从上开始。flex-end 子组件向主轴终点对齐,如果主轴水平,从右开始,主轴垂直,从下开始。center 居中显示,注意:并不是让某一个子组件居中,而是整体有居中效果space-between 均匀分配,相邻元素间距离相同。每行第一个组件与行首对齐,每行最后一个组件与行尾对齐。space-around 均匀分配,相邻元素间距离相同。每行第一个组件到行首的距离和每行最后一个组件到行尾的距离将会是相邻元素之间距离的一半

使用

export default class ReactDemo extends Component {     
   render() { 
      return ( 
         <View style={styles.rootView}> 
          <Text style={[styles.text1Style,styles.baseTextStyle]}>1</Text> 
          <Text style={[styles.text1Style,styles.baseTextStyle]}>2</Text> 
          <Text style={[styles.text2Style,styles.baseTextStyle]}>3</Text> 
          <Text style={[styles.text3Style,styles.baseTextStyle]}>4</Text> 
          </View> ); 
        }}
const styles = StyleSheet.create({
    rootView:{ backgroundColor:'darkorange', flex:1, flexDirection:'row',
    justifyContent:'space-around' }, 
    baseTextStyle:{ backgroundColor:'deepskyblue', width:50, height:50,
    fontSize:15, textAlign:'center', marginTop:20,
 }});

效果
flex-start

flex-start.png

flex-end

flex-end.png

center

center.png

space-between

space-between .png

space-around

space-around.png

alignItems
alignItems:决定子组件在测轴中具体布局一直都没有管过侧轴,如果侧轴垂直,决定子组件在上,还是下,或者居中

alignItems共有四个值,默认为stretch。

flex-start 子组件向侧轴起点对齐。flex-end 子组件向侧轴终点对齐。center 子组件在侧轴居中。stretch 子组件在侧轴方向被拉伸到与容器相同的高度或宽度。

使用

render(){ 
  return (
   <View style={styles.rootView}> 
        <Text style={[styles.text1Style,styles.baseTextStyle]}>1</Text> 
        <Text style={[styles.text1Style,styles.baseTextStyle]}>2</Text> 
        <Text style={[styles.text2Style,styles.baseTextStyle]}>3</Text>
        <Text style={[styles.text3Style,styles.baseTextStyle]}>4</Text> 
   </View> ); 
  }}
const styles = StyleSheet.create({ 
  rootView:{ backgroundColor:'darkorange', flex:1, flexDirection:'row', 
  justifyContent:'space-around', alignItems:'stretch' }, 
  baseTextStyle:{ backgroundColor:'deepskyblue', width:50, height:50, 
  fontSize:15, textAlign:'center', marginTop:20, }});

效果
flex-start

flex-start .png

flex-end

flex-end .png

center

center .png

stretch

stretch .png

alignSelf
alignSelf:自定义自己的侧轴布局,用于一个子组件设置。注意:当某个子组件不想参照默认的alignItems时,可以设置alignSelf,自定义自己的侧轴布局。

alignSelf共有五个值,默认为auto。

auto 继承它的父容器的alignItems属性。如果没有父容器则为 "stretch"flex-start 子组件向侧轴起点对齐。flex-end 子组件向侧轴终点对齐。center 子组件在侧轴居中。stretch 子组件在侧轴方向被拉伸到与容器相同的高度或宽度。

使用

export default class ReactDemo extends Component { 
    render() { 
      return ( 
        <View style={styles.rootView}> 
          <Text style={[styles.text1Style,styles.baseTextStyle]}>1</Text> 
          <Text style={[styles.text2Style,styles.baseTextStyle]}>2</Text> 
          <Text style={[styles.text3Style,styles.baseTextStyle]}>3</Text> 
          <Text style={[styles.text4Style,styles.baseTextStyle]}>4</Text> 
        </View> ); 
}}
const styles = StyleSheet.create({ 
  rootView:{ backgroundColor:'darkorange', flex:1, flexDirection:'row',
  justifyContent:'space-around', alignItems:'center' },
  baseTextStyle:{ backgroundColor:'deepskyblue', width:50, 
  height:50, fontSize:15, textAlign:'center', marginTop:20, },
  text3Style:{ alignSelf:'flex-start' }
  }
);

效果

alignSelf.png

flex
flex: 决定子控件在主轴中占据几等分。
flex: 任意数字,所有子控件flex相加,自己flex占总共多少,就有多少宽度.

使用

export default class ReactDemo extends Component { render() { return ( <View style={styles.rootView}> <Text style={[styles.text1Style,styles.baseTextStyle]}>1</Text> <Text style={[styles.text2Style,styles.baseTextStyle]}>2</Text> <Text style={[styles.text3Style,styles.baseTextStyle]}>3</Text> <Text style={[styles.text4Style,styles.baseTextStyle]}>4</Text> </View> ); }}const styles = StyleSheet.create({ rootView:{ backgroundColor:'darkorange', flex:1, flexDirection:'row', justifyContent:'space-around', alignItems:'center' }, baseTextStyle:{ // width:50, // height:50, fontSize:15, textAlign:'center', marginTop:20, }, text1Style:{ flex:1, backgroundColor:'red', }, text2Style:{ flex:1, backgroundColor:'deepskyblue', }, text3Style:{ flex:3, backgroundColor:'green' }, text4Style:{ flex:1, backgroundColor:'blue', }});

效果

flex.png

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

推荐阅读更多精彩内容