Flutter中使用Stack和Positioned这两个组件来配合实现绝对定位。Stack允许子组件堆叠,而Positioned用于根据Stack的四个角来确定子组件的位置
1. Stack 介绍
Stack 源码定义:
Stack({
Key? key,
this.alignment = AlignmentDirectional.topStart,
this.textDirection,
this.fit = StackFit.loose,
this.clipBehavior = Clip.hardEdge,
List children = const [],
})
-
alignment
:此参数决定如何去对齐没有定位(没有使用Positioned
)或部分定位的子组件。所谓部分定位,在这里特指没有在某一个轴上定位:left
、right
为横轴,top
、bottom
为纵轴,只要包含某个轴上的一个定位属性就算在该轴上有定位。 -
textDirection
:和Row
、Wrap
的textDirection
功能一样,都用于确定alignment
对齐的参考系,即:textDirection
的值为TextDirection.ltr
,则alignment
的start
代表左,end
代表右,即从左往右
的顺序;textDirection
的值为TextDirection.rtl
,则alignment的start
代表右,end
代表左,即从右往左
的顺序。 -
fit
:此参数用于确定没有定位的子组件如何去适应Stack
的大小。StackFit.loose
表示使用子组件的大小,StackFit.expand
表示扩伸到Stack
的大小。 -
clipBehavior
:此属性决定对超出Stack
显示空间的部分如何剪裁,Clip枚举类中定义了剪裁的方式,Clip.none
表示不裁剪,Clip.hardEdge
表示快速剪裁,但保真度较低,不应用抗锯齿。Clip.antiAlias
比Clip.hardEdge
慢一点,但边缘平滑。Clip.antiAliasWithSaveLayer
最慢,裁剪边缘效果最好,但一般不用
示例1
class StackDemo1 extends StatelessWidget {
const StackDemo1({
Key? key,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return Stack(
alignment: AlignmentDirectional(0, 0),
children: [
Image.network(
"https://tva1.sinaimg.cn/large/006y8mN6gy1g7aa03bmfpj3069069mx8.jpg",
width: 200,
height: 200,
),
Container(
width: 159,
height: 150,
color: Colors.red,
),
Text(
"Hello World",
style: TextStyle(backgroundColor: Colors.white),
),
],
);
}
}
2. Positioned
Positioned 源码定义:
const Positioned({
Key? key,
this.left,
this.top,
this.right,
this.bottom,
this.width,
this.height,
required Widget child,
})
left
、top
、right
、 bottom
分别代表离Stack左、上、右、底四边的距离。width
和height
用于指定需要定位元素的宽度和高度。注意,Positioned
的width
、height
和其它地方的意义稍微有点区别,此处用于配合left
、top
、right
、 bottom
来定位组件,举个例子,在水平方向时,你只能指定left
、right
、width
三个属性中的两个,如指定left
和width
后,right
会自动算出(left+width
),如果同时指定三个属性则会报错,垂直方向同理。
Stack + Positioned 示例
示例1
class PositionedDemo1 extends StatelessWidget {
const PositionedDemo1({
Key? key,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return Stack(
clipBehavior: Clip.none, //裁剪方式
children: [
Image.network(
"https://tva1.sinaimg.cn/large/006y8mN6gy1g7aa03bmfpj3069069mx8.jpg",
width: 200,
),
Positioned(
left: 20,
bottom: -50,
child: Container(
width: 150,
height: 150,
color: Colors.red,
),
),
Positioned(
left: 20,
bottom: 20,
child: Text(
"来战斗吧!",
style: TextStyle(fontSize: 20, color: Colors.orange),
),
),
],
);
}
}
示例2
class _MSHomeContentState extends State {
void IconButtonEvent() {
setState(() {
isFavorite = !isFavorite;
});
}
var isFavorite = false;
@override
Widget build(BuildContext context) {
return Stack(
children: [
Image.network(
"https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fimg9.51tietu.net%2Fpic%2F2019-091318%2F5g51pcfwqed5g51pcfwqed.jpg&refer=http%3A%2F%2Fimg9.51tietu.net&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=auto?sec=1652509694&t=41fc509066338e4806331e5708055ab9",
),
Positioned(
bottom: 0,
left: 0,
right: 0,
child: Container(
padding: EdgeInsets.symmetric(horizontal: 8),
color: Color.fromARGB(200, 0, 0, 0),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
"唯美风景",
style: TextStyle(fontSize: 18, color: Colors.white),
),
IconButton(
onPressed: IconButtonEvent,
icon: Icon(
Icons.favorite,
color: isFavorite ? Colors.red : Colors.white,
),
)
],
),
),
),
],
);
}
}
示例3
class StackDemo4 extends StatelessWidget {
const StackDemo4({
Key? key,
}) : super(key: key);
@override
Widget build(BuildContext context) {
//通过ConstrainedBox来确保Stack占满屏幕
return ConstrainedBox(
constraints: BoxConstraints.expand(),
child: Stack(
alignment: AlignmentDirectional.center,
children: [
Container(
color: Colors.red,
child: Text("Hello World"),
),
Positioned(left: 20, child: Text("I am Jack")),
Positioned(top: 20, child: Text("Your friend")),
],
),
);
}
}
由于第一个子文本组件Text("Hello world")
没有指定定位,并且alignment
值为Alignment.center
,所以它会居中显示。第二个子文本组件Text("I am Jack")
只指定了水平方向的定位(left)
,所以属于部分定位,即垂直方向上没有定位,那么它在垂直方向的对齐方式则会按照alignment
指定的对齐方式对齐,即垂直方向居中。对于第三个子文本组件Text("Your friend")
,和第二个Text原理一样,只不过是水平方向没有定位,则水平方向居中。
示例4
class StackDemo5 extends StatelessWidget {
const StackDemo5({
Key? key,
}) : super(key: key);
@override
Widget build(BuildContext context) {
//通过ConstrainedBox来确保Stack占满屏幕
return ConstrainedBox(
constraints: BoxConstraints.expand(),
child: Stack(
alignment: AlignmentDirectional.center,
fit: StackFit.expand, // 未定位widget占满Stack整个空间
children: [
Positioned(left: 20, child: Text("I am Jack")),
Container(
color: Colors.red,
child: Text("Hello World"),
),
Positioned(top: 20, child: Text("Your friend")),
],
),
);
}
}
可以看到,由于第二个子文本组件没有定位,所以fit属性会对它起作用,就会占满Stack。由于Stack子元素是堆叠的,所以第一个子文本组件被第二个遮住了,而第三个在最上层,所以可以正常显示。
https://book.flutterchina.club/chapter4/stack.html