We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea32543 commit a32ae23Copy full SHA for a32ae23
3 files changed
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+## [2.0.1]
2
+
3
+* 异常页面处理
4
5
## [2.0.0]
6
7
* 空安全支持
lib/src/webview.dart
@@ -190,7 +190,7 @@ class _FKWebViewState extends State<FKWebView>
190
// this.url = url;
191
// });
192
presenter?.onWebViewReday();
193
- _onWebViewError.value = FKWebViewError(code: -10000);
+ _onWebViewError.value = FKWebViewError(code: FKWebViewError.noError().code);
194
},
195
onProgressChanged: (InAppWebViewController controller, int progress) {
196
_progress.value = progress / 100;
pubspec.yaml
@@ -1,6 +1,6 @@
name: fk_webview
description: A new Flutter WebView package.
-version: 2.0.0
+version: 2.0.1
homepage: http://github.com/flutter-fast-kit/fk_webview
environment:
0 commit comments