flutter_webview_plugin
flutter_webview_plugin copied to clipboard
I/ViewRootImpl: jank_removeInvalidNode all the node in jank list is out of time
System info
Issue occurs on: iOS / Android / both Plugin version: xxx Flutter doctor output:
paste it here...
Steps to Reproduce
class WebDetail extends StatelessWidget { // Instance of WebView plugin final flutterWebViewPlugin = FlutterWebviewPlugin(); String url, title;
WebDetail({Key key, @required this.title, @required this.url}) : super(key: key); @protected
@override Widget build(BuildContext context) { print("allurl==$url"); return new WebviewScaffold( url: url, appBar: new AppBar( leading: new IconButton( icon: Icon(Icons.arrow_back), onPressed: () { Navigator.maybePop(context); }), actions: <Widget>[ IconButton( icon: const Icon(Icons.autorenew), onPressed: () { flutterWebViewPlugin.reload(); }) ], // ignore: unnecessary_brace_in_string_interps title: new Text("${title}", style: TextStyle(color: Colors.white))), withZoom: true, withLocalStorage: true, hidden: true, initialChild: Container( color: Colors.redAccent, child: const Center(child: Text('Waiting.....'))), ); }
- ...
- ...
- ...
Logs
I/ViewRootImpl: jank_removeInvalidNode all the node in jank list is out of time
same issue
même problème. I/HwViewRootImpl(13365): removeInvalidNode all the node in jank list is out of time
same issue
same issue when i click back button, and it's so slow only on android.
Generally, the first time is ok, but the second time i will encounter this error when debugging
Android only
Same issue when navigating to Webview again: By the way what's the main reason for this error? I/HwViewRootImpl(13365): removeInvalidNode all the node in jank list is out of time
I'm having the same problem, can it be caused by permissions?
Same here
June 2022 SAME ISSUE
August 2022, same issue.
same issue... android debugging