Procházet zdrojové kódy

1、router webView的特殊处理

tags/0.0.14+3
PH2 před 3 roky
rodič
revize
20e6e9a545
1 změnil soubory, kde provedl 6 přidání a 0 odebrání
  1. +6
    -0
      lib/util/router_util.dart

+ 6
- 0
lib/util/router_util.dart Zobrazit soubor

@@ -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);


Načítá se…
Zrušit
Uložit