我想将包含Positioned
子项的 Stack 小部件居中。Stack 的大小在渲染之前是未知的。
不幸的是,堆栈似乎有无限的大小(如在其周围包裹容器时所见)。
import 'package:flutter/material.dart';
class StackTest extends StatelessWidget {
const StackTest({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
body: SafeArea(
child: Center(
child: Container(
decoration: BoxDecoration(
border: Border.all(
color: Colors.yellow,
width: 5.0,
),
),
child: buildStack()),
),
),
);
}
Widget buildStack() {
return Stack(
clipBehavior: Clip.none,
children: [
Container(),
Positioned(
top: 0,
left: 0,
child: Container(
height: 50,
width: 50,
color: Colors.red,
),
),
Positioned(
top: 50,
left: 50,
child: Container(
height: 50,
width: 50,
color: Colors.blue,
),
),
],
);
}
}
最后一个问题:如何将容器包裹在包含已定位子项的堆栈周围并将其居中?
以下是一些类似的问题,对我没有帮助: