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 e9c9dbb commit cb94fb7Copy full SHA for cb94fb7
lib/src/html_parser.dart
@@ -132,6 +132,14 @@ class _HtmlParserState extends State<HtmlParser> {
132
);
133
}
134
135
+ @override
136
+ void dispose() {
137
+ for (var e in widget.extensions) {
138
+ e.onDispose();
139
+ }
140
+ super.dispose();
141
142
+
143
/// Converts the tree of Html nodes into a simplified StyledElement tree
144
void lexHtmlTree() {
145
tree = StyledElement(
0 commit comments