Explorar el Código

1、router webView的特殊处理

tags/0.0.14+3
PH2 hace 3 años
padre
commit
20e6e9a545
Se han modificado 1 ficheros con 6 adiciones y 0 borrados
  1. +6
    -0
      lib/util/router_util.dart

+ 6
- 0
lib/util/router_util.dart Ver fichero

@@ -45,6 +45,12 @@ class RouterUtil {
}
}

// webView
if (skipModel?.skipIdentifier == 'pub.flutter.url') {
this.openWebview(skipModel?.url, context);
return;
}

Widget page = EmptyPage();
if (PageFactory.hasRegisted(skipModel.skipIdentifier)) {
page = PageFactory.create(skipModel.skipIdentifier, data);


Cargando…
Cancelar
Guardar