📜  容器内的容器颤动 - 任何代码示例

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

代码示例1
Container(
  width: 200.0,
  height: 200.0,
  color: Colors.orange,
  child: Container(
    width: 50.0,
    height: 50.0,
    color: Colors.blue,
  ),
)