flutter3.0学习笔记

线性布局(Row和Column

Preview
  • 线性布局(Row和Column)
  • Row
  • Column
  • Row、Column嵌套

线性布局(Row和Column)

所谓线性布局,即指沿水平或垂直方向排列子组件。Flutter 中通过Row和Column来实现线性布局。 在线性布局中,有两个定义对齐方式的枚举类MainAxisAlignment和CrossAxisAlignment,分别代表主轴(水平方向)对齐和纵轴(垂直方向)对齐。

Row

Row可以沿水平方向排列其子widget

 Row({
    super.key,
    super.mainAxisAlignment,
    super.mainAxisSize,
    super.crossAxisAlignment,
    super.textDirection,
    super.verticalDirection,
    super.textBaseline, // NO DEFAULT: we don't know what the text's baseline should be
    super.children,
  }) 
属性介绍
mainAxisAlignment表示子组件在Row所占用的水平空间内对齐方式,如果mainAxisSize值为MainAxisSize.min,则此属性无意义,因为子组件的宽度等于Row的宽度。只有当mainAxisSize的值为MainAxisSize.max时,此属性才有意义,MainAxisAlignment.start表示沿textDirection的初始方向对齐,如textDirection取值为TextDirection.ltr时,则MainAxisAlignment.start表示左对齐,textDirection取值为TextDirection.rtl时表示从右对齐。而MainAxisAlignment.end和MainAxisAlignment.start正好相反;MainAxisAlignment.center表示居中对齐。
mainAxisSize表示Row在主轴(水平)方向占用的空间,默认是MainAxisSize.max,表示尽可能多的占用水平方向的空间,此时无论子 widgets 实际占用多少水平空间,Row的宽度始终等于水平方向的最大宽度;而MainAxisSize.min表示尽可能少的占用水平空间,当子组件没有占满水平剩余空间,则Row的实际宽度等于所有子组件占用的的水平空间;
crossAxisAlignment表示子组件在纵轴方向的对齐方式,Row的高度等于子组件中最高的子元素高度,它的取值和MainAxisAlignment一样(包含start、end、 center三个值)
textDirection示水平方向子组件的布局顺序(是从左往右还是从右往左)
verticalDirection表示Row纵轴(垂直)的对齐方向,默认是VerticalDirection.down,表示从上到下

例子:

return Scaffold(
  appBar: AppBar(title: const Text('线性布局'),),
  body: Container(
    padding: const EdgeInsets.only(top: 20.0),
      child: Column(
        crossAxisAlignment: CrossAxisAlignment.start,
        children: [
          Row(
            mainAxisAlignment: MainAxisAlignment.center,
            children: const [
              Text('在tehub学习',style: TextStyle(fontSize: 30.0),),
              Text('学习flutter')
            ],
          ),
          Row(
            mainAxisSize: MainAxisSize.min,
            mainAxisAlignment: MainAxisAlignment.center,
            children: const [
              Text('在tehub学习',style: TextStyle(fontSize: 30.0),),
              Text('学习flutter')
            ],
          ),
          Row(
           textDirection: TextDirection.rtl,
            mainAxisAlignment: MainAxisAlignment.end,
            children: const [
              Text('在tehub学习',style: TextStyle(fontSize: 30.0),),
              Text('学习flutter')
            ],
          ),
          Row(
            verticalDirection: VerticalDirection.up,
            crossAxisAlignment: CrossAxisAlignment.start,
            children: const [
              Text('在tehub学习',style: TextStyle(fontSize: 30.0),),
              Text('学习flutter')
            ],
          ),

        ],
      ),
  ),
);

Column

Column可以在垂直方向排列其子组件。参数和Row一样,不同的是布局方向为垂直,主轴纵轴正好相反。

例子:

return Scaffold(
  appBar: AppBar(title: const Text('线性布局'),),
  body: Container(
    padding: const EdgeInsets.only(top: 20.0),
      child: Column(
        crossAxisAlignment: CrossAxisAlignment.center,
        children:  [
          const Text('在tehub学习',style: TextStyle(fontSize: 30.0),),
          Text('学习flutter'*10),
        ],
      ),
  ),
);

由于我们没有指定Column的mainAxisSize,所以使用默认值MainAxisSize.max,则Column会在垂直方向占用尽可能多的空间,此例中会占满整个屏幕高度。 由于我们指定了 crossAxisAlignment 属性为CrossAxisAlignment.center,那么子项在Column纵轴方向(此时为水平方向)会居中对齐。注意,在水平方向对齐是有边界的,总宽度为Column占用空间的实际宽度,而实际的宽度取决于子项中宽度最大的Widget。

Row、Column嵌套

如果Row里面嵌套Row,或者Column里面再嵌套Column,那么只有最外面的Row或Column会占用尽可能大的空间,里面Row或Column所占用的空间为实际大小,下面以Column为例说明:

return Scaffold(
  appBar: AppBar(title: const Text('线性布局'),),
  body: Container(
    color: Colors.red,
    padding: const EdgeInsets.all(20.0),
    child: Column(
      mainAxisSize: MainAxisSize.max,//有效,外层Colum高度为整个屏幕
      crossAxisAlignment: CrossAxisAlignment.start,
      children:  [
        Container(
          color: Colors.green,
          child: Column(
            mainAxisSize: MainAxisSize.max,//无效,内层Colum高度为实际高度
            children: [
              const Text('在tehub学习',style: TextStyle(fontSize: 30.0),),
              Text('学习flutter'*10),
            ],
          ),
        )
      ],
    ),
  ),
);

image.png

如果要让里面的Column占满外部Column,可以使用Expanded 组件:

 child: Column(
  mainAxisSize: MainAxisSize.max,//有效,外层Colum高度为整个屏幕
  crossAxisAlignment: CrossAxisAlignment.start,
  children:  [
   Expanded(
       child: Container(
         color: Colors.green,
         child: Column(
           mainAxisSize: MainAxisSize.max,//无效,内层Colum高度为实际高度
           children: [
             const Text('在tehub学习',style: TextStyle(fontSize: 30.0),),
             Text('学习flutter'*10),
           ],
         ),
       )
   )
  ],
),

image.png