You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/webview_flutter/webview_flutter_android/CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,7 @@
1
+
## 2.0.15
2
+
3
+
* Added Overrides in FlutterWebView.java
4
+
1
5
## 2.0.14
2
6
3
7
* Update example App so navigation menu loads immediatly but only becomes available when `WebViewController` is available (same behavior as example App in webview_flutter package).
Copy file name to clipboardExpand all lines: packages/webview_flutter/webview_flutter_android/android/src/main/java/io/flutter/plugins/webviewflutter/FlutterWebView.java
+4-24Lines changed: 4 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -188,48 +188,28 @@ public View getView() {
188
188
returnwebView;
189
189
}
190
190
191
-
// @Override
192
-
// This is overriding a method that hasn't rolled into stable Flutter yet. Including the
193
-
// annotation would cause compile time failures in versions of Flutter too old to include the new
194
-
// method. However leaving it raw like this means that the method will be ignored in old versions
195
-
// of Flutter but used as an override anyway wherever it's actually defined.
196
-
// TODO(mklim): Add the @Override annotation once flutter/engine#9727 rolls to stable.
0 commit comments