fix dispose of text painter (#1774)

pull/1782/head
jezell 1 year ago committed by GitHub
parent 9367bdf692
commit fbb4f454e5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 12
      lib/src/widgets/others/proxy.dart

@ -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();
}
} }

Loading…
Cancel
Save