📜  flutter limitedbox - 任何代码示例

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

代码示例1
UnconstrainedBox(
            child: LimitedBox(
                maxHeight: 150,
                maxWidth: 150,
                child: Container(
                  color: Colors.red,
                )
            )
          ),