Flutter Container

博客地址:flutterall.com

Container

Container构成以及绘制过程

Container作为Flutter中的用来布局的Widget,可以对子widget进行 绘制(painting)定位(positioning)调整大小(sizing)操作。

Container构成

绘制过程(painting)

  • transform
    Matrix4 transform

  • decoration
    Decoration

  • paints the child

  • paints the foregroundDecoration

调整大小(sizing)

看下Container 构造方法,下面的大小约束会更好理解。

Container({
    Key key,
    this.alignment,
    this.padding,
    Color color,
    Decoration decoration,
    this.foregroundDecoration,
    double width,
    double height,
    BoxConstraints constraints,
    this.margin,
    this.transform,
    this.child,
  })
  • 没有子节点的Container试图尽可能大,除非传入的约束(constraints
    )是无限制(unbounded)的,在这种情况下,它们尽可能地小。
  • 拥有子节点的Container,大小会按照子节点的大小进行适应。如果Container设置了大小参数(例如:width, height, constraints
    ),则按照Container的大小参数来。

布局行为

由于Container包含了一系列其他的Widget,所以Container得布局行为是由一系列其他的Widget的布局行为组合而成。所以,Container的布局行为比较麻烦。

布局策略顺序

Container tries, in order: to honor alignment, to size itself to the child, to honor the width, height, and constraints, to expand to fit the parent, to be as small as possible.

也就是说,Container会按照下面的这个顺序去进行布局操作:

  • 对齐(alignment)
  • 调节自身大小去适应子节点
  • 优先使用width 、 height、constraints
  • 放大自己去填充父节点
  • 尽可能的变小

布局策略细分解释

有界是指:bool get hasBoundedWidth => maxWidth < double.infinity;

  • 父节点提供了有界(bounded)约束

没有子节点,没有width、height、alignment,但是父节点提供了有界约束(bounded constraints)。

这种情况,Container会自动拓展大小,填充父节点。

class FlutterContainer extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Container(
      color: const Color(0xFFCDCD00),
      child: Text("hello"),
    );
  }
}

父节点提供了bounded限制
  • unbounded constraints

跟上面情况相反,没有子节点,没有width、height、alignment,但是父节点提供了无界约束(unbounded constraints)。

这种情况,Container会尽可能的小。


class FlutterContainer extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Center(

      child: Container(
        margin: const EdgeInsets.all(10.0),
        color: const Color(0xFF00FF00),
        child: Text("hello"),
      ),
    );
  }
}

unbounded constraints
  • width + height 或者 constraints

没有子节点、对齐方式(alignment),提供width、height或者constraints。

Container会根据自身以及父节点的限制,将自身调节到足够小。

给定width+height
  • child+父节点的constraints

Container会将父节点的constraints传递给子child

class FlutterContainer extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Center(
      child: Container(
        color: Colors.blue,
        constraints: BoxConstraints(
            maxHeight: 300.0,
            maxWidth: 200.0,
            minWidth: 150.0,
            minHeight: 150.0),
        child: Container(
          color: Colors.brown,
          child: Text("hello"),
        ),
      ),
    );
  }
}

单独的一个child,父节点的minHeight 和 minWidth 被传递过来了

这里父节点的minHeight 和 minWidth 被传递过来了。

  • aligment + 父节点的bounded限制

Container会将自身调节足够大,填充到父节点的最大范围。


class FlutterContainer extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Center(
      child: Container(
        color: Colors.blue,

        constraints: BoxConstraints(
            maxHeight: 300.0,
            maxWidth: 200.0,
            minWidth: 150.0,
            minHeight: 150.0),
        child: Container(
          alignment: Alignment.topLeft,
          color: Colors.brown,
        ),
      ),
    );
  }
}


alignment + 父节点的constraints限制

属性

Alignment-约束child的位置


class FlutterContainer extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Center(
        child: Container(
          width: 300,
          height: 200,
          alignment: Alignment.centerRight,
          color: Colors.blue,
          child: Text("Hello"),
        )
    );
  }
}

Alignment.centerRight

Alignment坐标轴

Alignment坐标轴

比如:

static const Alignment center = Alignment(0.0, 0.0); 表示居中
static const Alignment bottomLeft = Alignment(-1.0, 1.0); 表示左下
....

Constraints - 控件占用的空间大小

一般使用BoxConstraints

Center(
      child: Container(
        color: Colors.blue,
        alignment: Alignment.center,
        child: Container(
          color: Colors.brown,
          constraints: BoxConstraints(
              maxHeight: 300.0,
              maxWidth: 200.0,
              minWidth: 150.0,
              minHeight: 150.0
          ),
        ),
      ),
    );
Constraints

没有子child,给定了constraint,所以按照maxW、maxH来布局
如果我给了child呢?看下面:

Center(
      child: Container(
        color: Colors.blue,
        alignment: Alignment.center,
        child: Container(
          color: Colors.brown,
          child: Text("hello"),
          constraints: BoxConstraints(
              maxHeight: 300.0,
              maxWidth: 200.0,
              minWidth: 150.0,
              minHeight: 150.0
          ),
        ),
      ),
    );
child+constraints 没有alignment

Margin-给Container设置外边距

一般使用EdgeInsets

我们先看下默认情况:

Center(
      child: Container(
        color: Colors.blue,
        alignment: Alignment.centerRight,
        child: Container(
          color: Colors.brown,
          child: Text("HELLO"),
          constraints: BoxConstraints(
              maxHeight: 300.0,
              maxWidth: 200.0,
              minWidth: 150.0,
              minHeight: 150.0
          ),
        ),
      ),
    )
image.png

这里我设置了Alignment.centerRight,所以控件靠右居中。现在我们加上EdgeInsets,看看。

 Center(
      child: Container(
        color: Colors.blue,
        alignment: Alignment.centerRight,
        child: Container(
          margin: EdgeInsets.all(20.6),
          color: Colors.brown,
          child: Text("HELLO"),
          constraints: BoxConstraints(
              maxHeight: 300.0,
              maxWidth: 200.0,
              minWidth: 150.0,
              minHeight: 150.0
          ),
        ),
      ),
    );

EdgeInsets.all(20.6)

可以看到Container距离右边有了一定的边距。需要注意的是EdgeInsets.all是距离四周的边距,我这里由于Container较小,看不出来。
除了all还有下面几个方法:

  • fromLTRB (设置左上右下边距)
  • symmetric({ double vertical = 0.0, double horizontal = 0.0 })
    设置垂直、水平的外边距
  • only({
    this.left = 0.0,
    this.top = 0.0,
    this.right = 0.0,
    this.bottom = 0.0
    })

Padding 设置Container内边距

这个跟Margin使用类似的。

 Center(
      child: Container(
        constraints: BoxConstraints(
            minHeight: 100, minWidth: 200, maxWidth: 400, maxHeight: 200),
        child: Container(
          margin: EdgeInsets.all(20.5),
          padding: EdgeInsets.fromLTRB(30.4, 0, 0, 80),
        //设置padding内边距后,child居中偏移了位置
          color: Colors.brown,
          child: Text("HELLO"),
          alignment: Alignment.center,//child居中
        ),
      ),
    );
Padding

本地代码地址

Flutter Container
Flutter SafeArea
Flutter Row Column MainAxisAlignment Expanded
Flutter Image全解析
Flutter 常用按钮总结
Flutter ListView豆瓣电影排行榜
Flutter Card
Flutter Navigator&Router(导航与路由)
OverscrollNotification不起效果引起的Flutter感悟分享
Flutter 上拉抽屉实现
Flutter 豆瓣客户端,诚心开源
Flutter 更改状态栏颜色

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

推荐阅读更多精彩内容