它是由众多容器类Widget(DecoratedBox、ConstrainedBox、Transform、Padding、Align等)组合成的Widget,因此它的功能能够说集众家之特性ide
它是Stack布局内进行定位的Widget,与CSS中 position:absolute;
类似布局
在flutter中,Container容器通常默认是占满整个空间。当Positioned使用Container,会出现什么状况呢?post
....
....
@override
Widget build(BuildContext context) {
return Container(
color: Colors.blue,
child: Stack(
children: <Widget>[
Positioned(
//主要分析的Container对象
child: Container(
//_keyRed 申明为全局变量 GlobalKey _keyRed = GlobalKey();
//用key绑定Container
key: _keyRed,
decoration: BoxDecoration(color: Colors.yellow),
child: Row(
children: <Widget>[
],
),
),
),
Positioned(
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
MaterialButton(
elevation: 5.0,
padding: EdgeInsets.all(15.0),
color: Colors.grey,
child: Text("Get Sizes"),
onPressed: _getSizes,
),
MaterialButton(
elevation: 5.0,
color: Colors.grey,
padding: EdgeInsets.all(15.0),
child: Text("Get Positions"),
onPressed: _getPositions,
),
],
)),
],
),
);
//获取Positioned中Container渲染位置
_getPositions() {
final RenderBox renderBoxRed = _keyRed.currentContext.findRenderObject();
final positionRed = renderBoxRed.localToGlobal(Offset.zero);
print("POSITION of Red: $positionRed ");
}
//获取Positioned中Container大小
_getSizes() {
final RenderBox renderBoxRed = _keyRed.currentContext.findRenderObject();
final sizeRed = renderBoxRed.size;
print("SIZE of Red: $sizeRed");
}
复制代码
I/flutter (27566): SIZE of Red: Size(360.0, 0.0)
I/flutter (27566): POSITION of Red: Offset(0.0, 0.0)
复制代码
给Container加上height: 50.0
ui
I/flutter (27566): SIZE of Red: Size(360.0, 50.0)
I/flutter (27566): POSITION of Red: Offset(0.0, 0.0)
复制代码
bottom:0
bottom:0
定位的数值后,就比如HTML中块级元素被绝对定位position:absolute;
默认宽高的数值为0I/flutter (27566): SIZE of Red: Size(0.0, 50.0)
I/flutter (27566): POSITION of Red: Offset(0.0, 542.0)
复制代码
给Container加width或者加子元素spa
....
....
//用key绑定Container
key: _keyRed,
decoration: BoxDecoration(color: Colors.yellow),
child: Row(
children: <Widget>[
Text('222 '),
Text('333'),
],
),
复制代码
I/flutter (27566): SIZE of Red: Size(203.0, 50.0)
I/flutter (27566): POSITION of Red: Offset(0.0, 542.0)
复制代码
margin: EdgeInsets.only(bottom: 50.0,right: 10.0)
I/flutter (27566): SIZE of Red: Size(213.0, 100.0)
I/flutter (27566): POSITION of Red: Offset(0.0, 492.0)
// padding: EdgeInsets.only(top: 50.0,left: 10.0),`
I/flutter (27566): SIZE of Red: Size(213.0, 50.0)
I/flutter (27566): POSITION of Red: Offset(0.0, 542.0)
复制代码
Align 代替 Positioned3d
Align(
//对齐底部
alignment: Alignment.bottomCenter,
child: Container(
key: _keyRed,
decoration: BoxDecoration(color: Colors.yellow),
child: Row(
children: <Widget>[
Text('222 '),
Text('333'),
],
),
),
),
复制代码
用Align容器让Container的宽度铺满可是高度仍是默认为0,因此增长子元素效果以下:code