浏览代码

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


正在加载...
取消
保存