We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f1de52 commit b70699eCopy full SHA for b70699e
lib/constrait_layout/constraint_layout.dart
@@ -1130,6 +1130,9 @@ class _ConstraintRenderBox extends RenderBox
1130
if (childParentData.baseline != null) {
1131
constraintsIdSet.add(childParentData.baseline!.id!);
1132
}
1133
+ if (child is _BarrierRenderBox) {
1134
+ constraintsIdSet.addAll(childParentData._referencedIds!);
1135
+ }
1136
child = childParentData.nextSibling;
1137
1138
Set<ConstraintId> illegalIdSet = constraintsIdSet.difference(idSet);
0 commit comments