|
|
@ -75,6 +75,12 @@ class RenderBaselineProxy extends RenderProxyBox { |
|
|
|
super.performLayout(); |
|
|
|
super.performLayout(); |
|
|
|
_prototypePainter.layout(); |
|
|
|
_prototypePainter.layout(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
|
|
|
void dispose() { |
|
|
|
|
|
|
|
super.dispose(); |
|
|
|
|
|
|
|
_prototypePainter.dispose(); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
class EmbedProxy extends SingleChildRenderObjectWidget { |
|
|
|
class EmbedProxy extends SingleChildRenderObjectWidget { |
|
|
@ -293,4 +299,10 @@ class RenderParagraphProxy extends RenderProxyBox |
|
|
|
_prototypePainter.layout( |
|
|
|
_prototypePainter.layout( |
|
|
|
minWidth: constraints.minWidth, maxWidth: constraints.maxWidth); |
|
|
|
minWidth: constraints.minWidth, maxWidth: constraints.maxWidth); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
|
|
|
void dispose() { |
|
|
|
|
|
|
|
super.dispose(); |
|
|
|
|
|
|
|
_prototypePainter.dispose(); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|