fluttercommunity / fluttercommunity/flutter_webview_plugin

I/ViewRootImpl: jank_removeInvalidNode all the node in jank list is out of time

オープン
#494 コメント 11 件 リアクション 15 件 担当者 0 名 GitHub で見る
主要言語
Java
スター
1.5k
フォーク
938
PR マージ指標
30日以内にマージされた PR はありません

説明

## 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: [
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.....'))),
);
}

1. ...
2. ...
3. ...

## Logs

I/ViewRootImpl: jank_removeInvalidNode all the node in jank list is out of time

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

調査の方向性

まず、提供された WebDetail の例を Android で使って問題を再現し、周辺のログを取得します。次に、Flutter WebView プラグインがこのシナリオをどのように処理するかを追跡します。jank_removeInvalidNode メッセージがプラグインによって引き起こされているかを特定し、再現可能なプラグインの問題を文書化または修正できれば完了です。

索引モデルが issue の本文から書いたものです。

評価

技術スタック
android, flutter, java
領域
mobile
issue の種類
バグ
難易度
4/5
見積もり時間
3〜5日
活発さ
停滞
明瞭さ
説明が足りない
初心者へのやさしさ
25/100

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。