是否可以执行两个独立的Stack小部件之类的事情?
我尝试过的事情:
Stack(
children: <Widget>[
Stack(
children: <Widget>[
FittedBox(
fit: BoxFit.contain,
child: Container(
width: 1000,
height: 1000,
color: Colors.green,
)]),
Stack(
children: <Widget>[
Container(
width: 100,
height: 100,
color: Colors.red,
)])
]
)
出了什么问题: “红色”小部件容器不是100x100。 它较小,因为所有尺寸都适合1000x1000