📜  singlechildscrollview 全高颤动 - 任何代码示例

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

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