堆栈在 Column 中不起作用 - Flutter

Stack doesn't work inside Column - Flutter

希望你们一切顺利。我对 Stack 和 Column 有疑问。当我想在 Column 的 children 中使用 Stack 时,它不再起作用了。这是关于我的问题的 2 张照片。

不工作:


工作:

因为列和堆栈会占用屏幕大小。为了能够同时使用两者,你​​需要给内容一定的高度或者需要用 expanded

包裹起来
column(
   children[
  container(height:100 child:stack..... //container or expanded
   ])