File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -115,6 +115,7 @@ class ConstraintLayout extends MultiChildRenderObjectWidget {
115
115
selfHeight = size! ;
116
116
}
117
117
return _ConstraintRenderBox ()
118
+ .._rtl = rtl
118
119
..childConstraints = childConstraints
119
120
.._showLayoutPerformanceOverlay = showLayoutPerformanceOverlay
120
121
.._showHelperWidgets = showHelperWidgets
@@ -124,8 +125,7 @@ class ConstraintLayout extends MultiChildRenderObjectWidget {
124
125
.._debugPrintConstraints = debugPrintConstraints
125
126
.._width = selfWidth
126
127
.._height = selfHeight
127
- .._controller = controller? ._copy ()
128
- .._rtl = rtl;
128
+ .._controller = controller? ._copy ();
129
129
}
130
130
131
131
@override
@@ -144,6 +144,7 @@ class ConstraintLayout extends MultiChildRenderObjectWidget {
144
144
selfHeight = size! ;
145
145
}
146
146
(renderObject as _ConstraintRenderBox )
147
+ ..rtl = rtl
147
148
..childConstraints = childConstraints
148
149
..showLayoutPerformanceOverlay = showLayoutPerformanceOverlay
149
150
..showHelperWidgets = showHelperWidgets
@@ -153,8 +154,7 @@ class ConstraintLayout extends MultiChildRenderObjectWidget {
153
154
..debugPrintConstraints = debugPrintConstraints
154
155
..width = selfWidth
155
156
..height = selfHeight
156
- ..controller = controller? ._copy ()
157
- ..rtl = rtl;
157
+ ..controller = controller? ._copy ();
158
158
}
159
159
}
160
160
You can’t perform that action at this time.
0 commit comments