Skip to content

Commit 471a67c

Browse files
author
fbchen
committed
fix constraints print bug
1 parent 5c0976b commit 471a67c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/constraint_layout.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -2595,7 +2595,7 @@ class _ConstrainedNode {
25952595
if (nodeId == parent) {
25962596
map['nodeId'] = 'parent';
25972597
} else {
2598-
map['nodeId'] = nodeId;
2598+
map['nodeId'] = nodeId.id;
25992599
if (leftConstraint != null) {
26002600
if (leftAlignType == _AlignType.left) {
26012601
map['leftAlignType'] = 'toLeft';

0 commit comments

Comments
 (0)