美文网首页
Flutter 布局方式之线性布局

Flutter 布局方式之线性布局

作者: 小王在努力 | 来源:发表于2020-12-02 11:03 被阅读0次

前言

目前Flutter常见的布局方式主要有4种:1、线性布局 2、流式布局 3、弹性布局 4、层叠布局

今天我们主要介绍线性布局

流式布局

弹性布局

层叠布局

线性布局

所谓线性布局,即指沿水平或垂直方向排布子组件。
** Flutter中通过Row和Column来实现线性布局,类似于Android中的LinearLayout。**
关键字Row、Column

1 水平方向(关键字Row)

class testState extends State<test> with BaseBar {
  @override
  Widget build(BuildContext context) {
    ScreenUtil.init(context, width: defaultWidth, height: defaultHeight);
    return Scaffold(
        appBar: AppBaseBar("线性布局水平方向"),
        body: Row(
          children: [
            Container(
              margin: EdgeInsets.only(left: 30,top: 30),
              width: 100,
              height: 100,
              color: Colors.red,
              child: Text("1",style:TextStyle(
                color: Colors.white,
                fontSize: 60,
              )),
            ),
            Container(
              margin: EdgeInsets.only(left: 30,top: 30),
              width: 100,
              height: 100,
              color: Colors.yellow,
              child: Text("3",style:TextStyle(
                color: Colors.white,
                fontSize: 60,
              )),
            ),
            Container(
              margin: EdgeInsets.only(left: 30,top: 30),
              width: 100,
              height: 100,
              color: Colors.blue,
              child: Text("3",style:TextStyle(
                color: Colors.white,
                fontSize: 60,
              )),
            ),
          ],
        )
    );
  }
线性布局水平方向示例图

2 垂直方向(关键字Column)

class testState extends State<test> with BaseBar {
  @override
  Widget build(BuildContext context) {
    ScreenUtil.init(context, width: defaultWidth, height: defaultHeight);
    return Scaffold(
        appBar: AppBaseBar("线性布局水平方向"),
        body: Column(
          children: [
            Container(
              margin: EdgeInsets.only(left: 30,top: 30),
              width: 100,
              height: 100,
              color: Colors.red,
              child: Text("1",style:TextStyle(
                color: Colors.white,
                fontSize: 60,
              )),
            ),
            Container(
              margin: EdgeInsets.only(left: 30,top: 30),
              width: 100,
              height: 100,
              color: Colors.yellow,
              child: Text("3",style:TextStyle(
                color: Colors.white,
                fontSize: 60,
              )),
            ),
            Container(
              margin: EdgeInsets.only(left: 30,top: 30),
              width: 100,
              height: 100,
              color: Colors.blue,
              child: Text("3",style:TextStyle(
                color: Colors.white,
                fontSize: 60,
              )),
            ),
          ],
        )
    );
  }
}
线性布局垂直方向

3 线性布局的注意事项

当我们布局超过一行的时候,这时候系统是不会帮我们换行的,也就是说会造成一个问题。UI溢出。


UI溢出

水平排列,使用Row对视图进行水平排列
垂直排列,使用Column对视图进行垂直排列
Flutter中子视图超过父视图会报视图溢出

为了解决这个问题,我们就需要了解到Flutter第二个布局,流式布局

相关文章

  • Flutter 布局方式之线性布局

    前言 目前Flutter常见的布局方式主要有4种:1、线性布局 2、流式布局 3、弹性布局 4、层叠布局 今天...

  • Flutter 布局方式之流式布局

    前言 目前Flutter常见的布局方式主要有4种:1、线性布局 2、流式布局 3、弹性布局 4、层叠布局 今...

  • Flutter 布局方式之弹性布局

    前言 目前Flutter常见的布局方式主要有4种:1、线性布局 2、流式布局 3、弹性布局 4、层叠布局 今...

  • Flutter 布局方式之层叠布局

    前言 目前Flutter常见的布局方式主要有4种:1、线性布局 2、流式布局 3、弹性布局 4、层叠布局 今...

  • Flutter-线性布局

    在日常的开发中,线性布局是最常的布局方式。Flutter当中线性布局主要有Row和Column两种。这篇博客来分享...

  • Flutter布局Widget--弹性布局、线性布局、流式布局和

    前言 本文我们要介绍 Flutter 中布局 Widget,包括弹性布局、线性布局流式布局和层叠布局。 一、弹性布...

  • Android学习日记

    Day 9 Title 1:UI布局之线性布局 布局管理: 布局管理器就是组件在activityz中的呈现方式,包...

  • 线性布局(LinearLayout)

    线性布局,顾名思义,指的是整个Android布局中的控件摆放方式是以线性的方式摆放的 线性布局排列方式有: 纵向:...

  • Android应用界面开发——第二周笔记

    线性布局 线性布局是程序中常见的布局方式之一,包括水平线性布局和垂直线性布局两种, 通过Android:orien...

  • android第四课。

    今天学习了两种布局方式。一种是线性布局,另一种是相对布局。 线性布局: 相对布局: 相对布局 图标要选择对齐方式

网友评论

      本文标题:Flutter 布局方式之线性布局

      本文链接:https://www.haomeiwen.com/subject/kufdwktx.html