布局

布局

Scaffoldbody设置为Container,如果Container没有子元素,则继承父容器的大小。

import 'package:flutter/material.dart';

void main() {
  runApp(MainPageWidget());
}

class MainPageWidget extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: Text("LayoutWidget")),
        body: LayoutWidget(),
      ),
    );
  }
}

class LayoutWidget extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Container(
      color: Colors.red,
    );
  }
}

对于其他位置的Container,默认是没有大小的。

//green显示不了,默认是没有空间的,如果取消height则可以显示,默认横向占满全屏,继续取消width,则可以定制横向的宽度。
class LayoutWidget extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Container(
      color: Colors.red,
      child: Row(
        children: [
          Container(
            color: Colors.green,
            // width: 20,
            // height: 30,
          )
        ],
      ),
    );
  }
}

如果Container有内容,则Container的大小为包含所有子widget的大小。

// 本来最外层的container红色部分是全屏的,但是添加内容后,只显示一部分。

class LayoutWidget extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Container(
      color: Colors.red,
      child: Row(
        children: [
          Container(
            color: Colors.green,
            child: Icon(Icons.add),
          ),
          Container(
            color: Colors.green,
            child: Icon(Icons.ad_units),
          ),
          Container(
            color: Colors.green,
            child: Icon(Icons.ac_unit_outlined),
          )
        ],
      ),
    );
  }
}
Screenshot_1648514682.png

padding设置内边距,内边距部分还是当前widget所占用的空间。下面加号的位置上下左右各添加了30,因此父容器Contaienr的大小也会变大。


class LayoutWidget extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Container(
      color: Colors.red,
      child: Row(
        children: [
          Container(
            color: Colors.green,
            padding: EdgeInsets.all(30),
            child: Icon(Icons.add),
          ),
          Container(
            color: Colors.green,
            child: Icon(Icons.ad_units),
          ),
          Container(
            color: Colors.green,
            child: Icon(Icons.ac_unit_outlined),
          )
        ],
      ),
    );
  }
}

Screenshot_1648514990.png

margin设置外边距,当前widget离其他widget保持的距离。

// 第一个container添加一个margin
          Container(
            color: Colors.green,
            padding: EdgeInsets.all(30),
            margin: EdgeInsets.all(20),
            child: Icon(Icons.add),
          ),

此时可以看到绿色部分外面还有20的红色部分。

Screenshot_1648515176.png

当限制高度的时候,会导致widget显示不全,此时对于容器大小不变,只是内容会按照原来的大小显示子widget,但是当前widget由于设置了margin,当前widget会满足margin的要求,因此会被截断。

          Container(
            color: Colors.green,
            padding: EdgeInsets.all(30),
            margin: EdgeInsets.all(20),
            child: Icon(Icons.add),
            height: 10,
          ),
Screenshot_1648515563.png

同样,限制高度的时候,也有可能会超过当前widget的需要大小,此时仍然优先满足margin,其次才是满足padding,意味着padding的显示未必是设置的值。

          Container(
            color: Colors.green,
            padding: EdgeInsets.all(30),
            margin: EdgeInsets.all(20),
            child: Icon(Icons.add),
            height: 200,
          ),
Screenshot_1648515756.png

Container的对齐方式

  • Row
  • Column
  • Stack

默认Row的方式是横着显示在左上角,是因为当前默认的对齐是左上角。我们可以通过aligenment进行设置。屏幕的中心点为(0,0).而默认的值为(-1,-1)。

当我们设置child:Row的时候,表示横着布局,此时设置X轴就无效了,同样,如果设置child:Column,则设置Y轴就无效了。

   return Container(
      color: Colors.red,
      // alignment: Alignment(-1,-1),
      child: Row(
        children: [
          Container(
            color: Colors.green,
            child: Icon(Icons.add),
          ),
          Container(
            color: Colors.blue,
            child: Icon(Icons.ad_units),
          ),
          Container(
            color: Colors.purple,
            child: Icon(Icons.ac_unit_outlined),
          )
        ],
      ),
    );

mainAxisAlignment 主轴对齐方式

当内容只有一个的情况比较特殊,spaceBetween则显示在左边,spaceAround和spaceEvenly显示在中间。

enum MainAxisAlignment {
  /// Place the children as close to the start of the main axis as possible.
  ///
  /// If this value is used in a horizontal direction, a [TextDirection] must be
  /// available to determine if the start is the left or the right.
  ///
  /// If this value is used in a vertical direction, a [VerticalDirection] must be
  /// available to determine if the start is the top or the bottom.
  start,//开始的位置,默认值

  /// Place the children as close to the end of the main axis as possible.
  ///
  /// If this value is used in a horizontal direction, a [TextDirection] must be
  /// available to determine if the end is the left or the right.
  ///
  /// If this value is used in a vertical direction, a [VerticalDirection] must be
  /// available to determine if the end is the top or the bottom.
  end,// 结束的位置

  /// Place the children as close to the middle of the main axis as possible.
  center,//居中

  /// Place the free space evenly between the children.
  spaceBetween,// 两边没有间距,中间的平分

  /// Place the free space evenly between the children as well as half of that
  /// space before and after the first and last child.
  spaceAround,// 两边的间距是中间的间距的一般

  /// Place the free space evenly between the children as well as before and
  /// after the first and last child.
  spaceEvenly,//两边的间距等于中间的间距
}

crossAxisAlignment 交叉轴的对齐方式。

   return Container(
      color: Colors.red,
      alignment: Alignment(1,0),
      child: Row(
        mainAxisAlignment: MainAxisAlignment.start,
        crossAxisAlignment: CrossAxisAlignment.start,
        children: [
          Container(
            color: Colors.green,
            child: Icon(Icons.add,size: 30,),
          ),
          Container(
            color: Colors.blue,
            child: Icon(Icons.ad_units,size: 20,),
          ),
          Container(
            color: Colors.purple,
            child: Icon(Icons.ac_unit_outlined,size: 10,),
          )
        ],
      ),
    );
Screenshot_1648558321.png

Expanded 扩展以填充屏幕

当只有一个的时候,则会拉升这个widget,如果有多个Expanded,则会这些Expanded平分。

    return Container(
      color: Colors.red,
      alignment: Alignment(1,0),
      child: Row(
        mainAxisAlignment: MainAxisAlignment.start,
        crossAxisAlignment: CrossAxisAlignment.start,
        children: [
          Expanded(child: Container(
            color: Colors.green,
            child: Icon(Icons.add,size: 30,),
          )),
          Container(
            color: Colors.blue,
            child: Icon(Icons.ad_units,size: 20,),
          ),
          Container(
            color: Colors.purple,
            child: Icon(Icons.ac_unit_outlined,size: 10,),
          )
        ],
      ),
    );
Screenshot_1648558512.png
Screenshot_1648558541.png

逆序

默认widget是从左到右显示,但是Row里面如果设置了阅读方向从右边到左边,则可以让Widget逆序。

void main() {
  runApp(MainPageWidget());
}

class MainPageWidget extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: Text("LayoutWidget")),
        body: ReverseWidget(),
      ),
    );
  }
}

class ReverseWidget extends StatelessWidget {

  @override
  Widget build(BuildContext context) {
    return Container(
      color: Colors.red,
      child: Row(
        textDirection: TextDirection.rtl,
        mainAxisAlignment: MainAxisAlignment.start,
        children: [
          Text("第一个",style: TextStyle(backgroundColor: Colors.green)),
          Text("第二个",style: TextStyle(backgroundColor: Colors.blue))
        ],
      ),
    );
  }
}

Screenshot_1648597283.png

绝对定位

import 'package:flutter/material.dart';

void main() {
  runApp(MainPageWidget());
}

class MainPageWidget extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: Text("LayoutWidget")),
        body: PositionWidget(),
      ),
    );
  }
}

class PositionWidget extends StatelessWidget {

  @override
  Widget build(BuildContext context) {
    return Container(
      color: Colors.red,
      child: Stack(
        children: [
          Positioned(child: Text("第一个",style: TextStyle(backgroundColor: Colors.green,fontSize: 50))),
          Positioned(child: Text("第二个",style: TextStyle(backgroundColor: Colors.blue))),
          // right=10表示右对齐
          Positioned(child: Text("第二个",style: TextStyle(backgroundColor: Colors.blue)),right: 10,top: 20,),
        ],
      ),
    );
  }
}
Screenshot_1648597887.png

宽高比

当设置了宽度和高度的其中一个的时候才有效,如果两个都设置了则无效。

void main() {
  runApp(MainPageWidget());
}

class MainPageWidget extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: Text("LayoutWidget")),
        body: RatioWidget(),
      ),
    );
  }
}

class RatioWidget extends StatelessWidget {

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

推荐阅读更多精彩内容

  • 为了实现界面内组件的各种排布方式,我们需要进行布局,和其他端不同的是,Flutter中因为万物皆Widget,所以...
    5e4c664cb3ba阅读 626评论 1 1
  • 概述 单子布局组件 多子布局组件 一、单子布局组件 单子布局组件的含义是其只有一个子组件,可以通过设置一些属性设置...
    IIronMan阅读 672评论 0 2
  • Flutter中,布局方式为弹性盒子布局 可以将一个一个Widget看做一个一个矩形盒子,盒子套盒子模式 1.Co...
    MissStitch丶阅读 328评论 0 0
  • 一. 单子布局组件 单子布局组件的含义是其只有一个子组件,可以通过设置一些属性设置该子组件所在的位置信息等。比较常...
    AlanGe阅读 562评论 0 0
  • 一. 单子布局组件 单子布局组件的含义是其只有一个子组件,可以通过设置一些属性设置该子组件所在的位置信息等。比较常...
    张无奈阅读 369评论 0 0