generated from gabrielbmoro/MovieDB-App
-
Notifications
You must be signed in to change notification settings - Fork 1
Closed
Labels
Description
In jujuba_widget.dart, we define the main entry point of the library. There are two areas that should be reviewed for potential memory leaks:
- Stream listener
widget.commander.stream.listen(
(jsCommand) => _runJavascript(jsCommand),
);WebViewControllerinstance (_controller)
Both should be carefully managed to ensure they are properly disposed of when no longer needed.
Reactions are currently unavailable