📜  如何使最大高度容器颤动 - 无论代码示例

📅  最后修改于: 2022-03-11 15:00:47.684000             🧑  作者: Mango

代码示例1
new ConstrainedBox(
  constraints: new BoxConstraints(
    minHeight: 35.0,
    maxHeight: 60.0,
  ),
  child: ...child with growing content (has default height 25.0)...
),