颤振容器高度与父高度相同

时间:2018-06-28 08:59:11

标签: flutter flutter-layout

我想用白色容器覆盖卡片,但是容器始终需要高度(否则它不会显示)。我希望它和它的父堆栈一样大。我该如何进行这项工作?卡的高度会有所不同。我想我缺少了什么;)

return new Stack(
 children: <Widget>[
  new Card( ... ),
  new Container(color: Colors.white70),
 ]
);

2 个答案:

答案 0 :(得分:11)

您可以使用Positioned.fill来强制堆栈子项填充Stack

Stack(
  children: [
    Card(),
    Positioned.fill(
      child: Container(color: Colors.red),
    )
  ]
);

答案 1 :(得分:8)

height: double.infinity 

在使用集装箱的情况下对我有用