Flutter_ConstraintLayout
Flutter_ConstraintLayout copied to clipboard
LateInitializationError: Field 'paintingOrderList' has not been initialized.
首次使用, 使用场景如下:
在弹窗里加了个ConstraintLayout, 弹窗使用的是SmartDialog,代码如下:
Future<bool?> showUContractEnableDialog() {
// var centerLine = cId("centerLine");
return SmartDialog.show
children: [
Text(
"阿达斯大所大多",
style: TextStyle(fontSize: 15),
).applyConstraint(
// id: centerLine,
left: parent.left,
right: parent.right,
),
],
),
);
},
); }
出现如下报错:
请问一下大佬如何解决这个问题
往上翻,最根源的错误在最上面。
哦 是因为没有垂直的约束吧,, 确实是大意了