fluttercommunity / fluttercommunity/flutter_webview_plugin

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

Abierto
#494 11 comentarios 15 reacciones 0 asignados Ver en GitHub
Lenguaje dominante
Java
Estrellas
1.5k
Forks
938
Métricas de merge de PR
Sin PR fusionados en 30 d

Descripción

## 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

Guía de contribución

No hay ninguna guía de contribución indexada para este repositorio

Evaluación

Este issue todavía no se ha evaluado.

Recibe los nuevos issues en tu correo

Un resumen breve de issues de GitHub para principiantes.