今天遇到一个container 嵌套container的问题,内外都设置大小,结果内部的失效,自动填充了外部的大小。
const BoxConstraints.tightFor({
double? width,
double? height,
}) : minWidth = width ?? 0.0,
maxWidth = width ?? double.infinity,
minHeight = height ?? 0.0,
maxHeight = height ?? double.infinity;
当外部设置了大小的时候,这时候的约束最大最小就都相等,所以,才出现了这个问题