📜  在 singlechildscrollview 内设置容器高度时颤动溢出 - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:44.608000             🧑  作者: Mango

代码示例1
SingleChildScrollView(
  child: ConstrainedBox(
      constraints: BoxConstraints(
          height: MediaQuery.of(context).size.height,
      ),
      child: Container(
          //contents of container
      ),
  ),
),