瀏覽代碼

1、router webView的特殊处理

tags/0.0.14+3
PH2 3 年之前
父節點
當前提交
20e6e9a545
共有 1 個檔案被更改,包括 6 行新增0 行删除
  1. +6
    -0
      lib/util/router_util.dart

+ 6
- 0
lib/util/router_util.dart 查看文件

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


Loading…
取消
儲存