Flutter 布局(十)

本文主要介绍Flutter布局中的ListBody、ListView、CustomMultiChildLayout控件,详细介绍了其布局行为以及使用场景,并对源码进行了分析。

1. ListBody

A widget that arranges its children sequentially along a given axis.

1.1 简介

ListBody是一个不常直接使用的控件,一般都会配合ListView或者Column等控件使用。ListBody的作用是按给定的轴方向,按照顺序排列子节点。

1.2 布局行为

在主轴上,子节点按照顺序进行布局,在交叉轴上,子节点尺寸会被拉伸,以适应交叉轴的区域。

在主轴上,给予子节点的空间必须是不受限制的(unlimited),使得子节点可以全部被容纳,ListBody不会去裁剪或者缩放其子节点。

1.3 继承关系

Object > Diagnosticable > DiagnosticableTree > Widget > RenderObjectWidget > MultiChildRenderObjectWidget > ListBody

1.4 示例代码

1Flex( 2 direction: Axis.vertical, 3 children: <Widget>[ 4 ListBody( 5 mainAxis: Axis.vertical, 6 reverse: false, 7 children: <Widget>[ 8 Container(color: Colors.red, width: 50.0, height: 50.0,), 9 Container(color: Colors.yellow, width: 50.0, height: 50.0,), 10 Container(color: Colors.green, width: 50.0, height: 50.0,), 11 Container(color: Colors.blue, width: 50.0, height: 50.0,), 12 Container(color: Colors.black, width: 50.0, height: 50.0,), 13 ], 14 )], 15)

1.5 源码解析

构造函数如下:

1ListBody({ 2 Key key, 3 this.mainAxis = Axis.vertical, 4 this.reverse = false, 5 List<Widget> children = const <Widget>[], 6})

1.5.1 属性解析

mainAxis:排列的主轴方向。

reverse:是否反向。

1.5.2 源码

ListBody的布局代码非常简单,根据主轴的方向,对子节点依次排布。

当向右的时候,布局代码如下,向下的代码类似:

1double mainAxisExtent = 0.0; 2RenderBox child = firstChild; 3switch (axisDirection) { 4case AxisDirection.right: 5 final BoxConstraints innerConstraints = new BoxConstraints.tightFor(height: constraints.maxHeight); 6 while (child != null) { 7 child.layout(innerConstraints, parentUsesSize: true); 8 final ListBodyParentData childParentData = child.parentData; 9 childParentData.offset = new Offset(mainAxisExtent, 0.0); 10 mainAxisExtent += child.size.width; 11 assert(child.parentData == childParentData); 12 child = childParentData.nextSibling; 13 } 14 size = constraints.constrain(new Size(mainAxisExtent, constraints.maxHeight)); 15 break; 16}

当向左的时候,布局代码如下,向上的代码类似:

1double mainAxisExtent = 0.0; 2RenderBox child = firstChild; 3case AxisDirection.left: 4 final BoxConstraints innerConstraints = new BoxConstraints.tightFor(height: constraints.maxHeight); 5 while (child != null) { 6 child.layout(innerConstraints, parentUsesSize: true); 7 final ListBodyParentData childParentData = child.parentData; 8 mainAxisExtent += child.size.width; 9 assert(child.parentData == childParentData); 10 child = childParentData.nextSibling; 11 } 12 double position = 0.0; 13 child = firstChild; 14 while (child != null) { 15 final ListBodyParentData childParentData = child.parentData; 16 position += child.size.width; 17 childParentData.offset = new Offset(mainAxisExtent - position, 0.0); 18 assert(child.parentData == childParentData); 19 child = childParentData.nextSibling; 20 } 21 size = constraints.constrain(new Size(mainAxisExtent, constraints.maxHeight)); 22 break;

向右或者向下的时候,布局代码很简单,依次去排列。当向左或者向上的时候,首先会去计算主轴所占的空间,然后再去计算每个节点的位置。

1.6 使用场景

笔者自己从未使用过这个控件,也想象不出场景,大家了解下有这么一个布局控件即可。

2. ListView

A scrollable, linear list of widgets.

2.1 简介

ListView是一个非常常用的控件,涉及到数据列表展示的,一般情况下都会选用该控件。ListView跟GridView相似,基本上是一个slivers里面只包含一个SliverList的CustomScrollView。

2.2 布局行为

ListView在主轴方向可以滚动,在交叉轴方向,则是填满ListView。

2.3 继承关系

Object > Diagnosticable > DiagnosticableTree > Widget > StatelessWidget > ScrollView > BoxScrollView > ListView

看继承关系可知,这是一个组合控件。ListView跟GridView类似,都是继承自BoxScrollView。

2.4 示例代码

1ListView( 2 shrinkWrap: true, 3 padding: EdgeInsets.all(20.0), 4 children: <Widget>[ 5 Text('I\'m dedicating every day to you'), 6 Text('Domestic life was never quite my style'), 7 Text('When you smile, you knock me out, I fall apart'), 8 Text('And I thought I was so smart'), 9 ], 10) 11 12ListView.builder( 13 itemCount: 1000, 14 itemBuilder: (context, index) { 15 return ListTile( 16 title: Text("$index"), 17 ); 18 }, 19) 20

两个示例都是官方文档上的例子,第一个展示四行文字,第二个展示1000个item。

2.5 源码解析

构造函数如下:

1ListView({ 2 Key key, 3 Axis scrollDirection = Axis.vertical, 4 bool reverse = false, 5 ScrollController controller, 6 bool primary, 7 ScrollPhysics physics, 8 bool shrinkWrap = false, 9 EdgeInsetsGeometry padding, 10 this.itemExtent, 11 bool addAutomaticKeepAlives = true, 12 bool addRepaintBoundaries = true, 13 double cacheExtent, 14 List<Widget> children = const <Widget>[], 15})

同时也提供了如下额外的三种构造方法,方便开发者使用。

1ListView.builder 2ListView.separated 3ListView.custom

2.5.1 属性解析

ListView大部分属性同GridView,想了解的读者可以看一下之前所写的GridView相关的文章。这里只介绍一个属性

itemExtent:ListView在滚动方向上每个item所占的高度值。

2.5.2 源码

1@override 2Widget buildChildLayout(BuildContext context) { 3 if (itemExtent != null) { 4 return new SliverFixedExtentList( 5 delegate: childrenDelegate, 6 itemExtent: itemExtent, 7 ); 8 } 9 return new SliverList(delegate: childrenDelegate); 10}

ListView标准构造布局代码如上所示,底层是用到的SliverList去实现的。ListView是一个slivers里面只包含一个SliverList的CustomScrollView。源码这块儿可以参考GridView,在此不做更多的说明。

2.6 使用场景

ListView使用场景太多了,一般涉及到列表展示的,一般都会选择ListView。

但是需要注意一点,ListView的标准构造函数适用于数目比较少的场景,如果数目比较多的话,最好使用ListView.builder

ListView的标准构造函数会将所有item一次性创建,而ListView.builder会创建滚动到屏幕上显示的item。

3. CustomMultiChildLayout

A widget that uses a delegate to size and position multiple children.

3.1 简介

之前单节点布局控件中介绍过一个类似的控件--CustomSingleChildLayout,都是通过delegate去实现自定义布局,只不过这次是多节点的自定义布局的控件,通过提供的delegate,可以实现控制节点的位置以及尺寸。

3.2 布局行为

CustomMultiChildLayout提供的delegate可以控制子节点的布局,具体在如下几点:

  • 可以决定每个子节点的布局约束条件;
  • 可以决定每个子节点的位置;
  • 可以决定自身的尺寸,但是自身的自身必须不能依赖子节点的尺寸。

可以看到,跟CustomSingleChildLayout的delegate提供的作用类似,只不过CustomMultiChildLayout的稍微会复杂点。

3.3 继承关系

Object > Diagnosticable > DiagnosticableTree > Widget > RenderObjectWidget > MultiChildRenderObjectWidget > CustomMultiChildLayout

3.4 示例代码

1class TestLayoutDelegate extends MultiChildLayoutDelegate { 2 TestLayoutDelegate(); 3 4 static const String title = 'title'; 5 static const String description = 'description'; 6 7 @override 8 void performLayout(Size size) { 9 final BoxConstraints constraints = 10 new BoxConstraints(maxWidth: size.width); 11 12 final Size titleSize = layoutChild(title, constraints); 13 positionChild(title, new Offset(0.0, 0.0)); 14 15 final double descriptionY = titleSize.height; 16 layoutChild(description, constraints); 17 positionChild(description, new Offset(0.0, descriptionY)); 18 } 19 20 @override 21 bool shouldRelayout(TestLayoutDelegate oldDelegate) => false; 22} 23 24Container( 25 width: 200.0, 26 height: 100.0, 27 color: Colors.yellow, 28 child: CustomMultiChildLayout( 29 delegate: TestLayoutDelegate(), 30 children: <Widget>[ 31 LayoutId( 32 id: TestLayoutDelegate.title, 33 child: new Text("This is title", 34 style: TextStyle(fontSize: 20.0, color: Colors.black)), 35 ), 36 LayoutId( 37 id: TestLayoutDelegate.description, 38 child: new Text("This is description", 39 style: TextStyle(fontSize: 14.0, color: Colors.red)), 40 ), 41 ], 42 ), 43)

上面的TestLayoutDelegate作用很简单,对子节点进行尺寸以及位置调整。可以看到,每一个子节点必须用一个LayoutId控件包裹起来,在delegate中可以对不同id的控件进行调整。

3.5 源码解析

构造函数如下:

1CustomMultiChildLayout({ 2 Key key, 3 @required this.delegate, 4 List<Widget> children = const <Widget>[], 5})

3.5.1 属性解析

delegate:对子节点进行尺寸以及位置调整的delegate。

3.5.2 源码

1@override 2void performLayout() { 3 size = _getSize(constraints); 4 delegate._callPerformLayout(size, firstChild); 5}

CustomMultiChildLayout的布局代码很简单,调用delegate中的布局函数进行相关的操作,本身做的处理很少,在这里不做过多的解释。

3.6 使用场景

一些比较复杂的布局场景可以使用,但是有很多可替代的控件,使用起来也没有这么麻烦,大家还是按照自己熟练程度选择使用。

4. 后话

笔者建了一个Flutter学习相关的项目,Github地址,里面包含了笔者写的关于Flutter学习相关的一些文章,会定期更新,也会上传一些学习Demo,欢迎大家关注。

5. 参考

  1. ListBody class
  2. ListView class
  3. CustomMultiChildLayout class
  4. Working with long lists
点赞
收藏

评论区

加载中...

相关推荐

MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1

文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s

Oracle 分组与拼接字符串同时使用

SELECTT.,ROWNUMIDFROM(SELECTT.EMPLID,T.NAME,T.BU,T.REALDEPART,T.FORMATDATE,SUM(T.S0)S0,MAX(UPDATETIME)CREATETIME,LISTAGG(TOCHAR(

MySQL部分从库上面因为大量的临时表tmp_table造成慢查询

背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_

皕杰报表之UUID

​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为

手写Java HashMap源码

HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22

2020年前端实用代码段,为你的工作保驾护航

有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )

Flutter 布局(十) - HelloWorld