boxContent method
box-content - 内容盒模型(padding 和 border 不包含在 width/height 内) ⚠️ 部分支持:Flutter 中通过 BoxConstraints 间接控制 注意:Flutter 的 Container 默认行为类似于 border-box,content-box 需要通过计算实现
Implementation
ContainerBuilder boxContent() {
_boxSizingBorderBox = false;
return this;
}