File tree 9 files changed +18
-6
lines changed
webview_flutter_wkwebview
9 files changed +18
-6
lines changed Original file line number Diff line number Diff line change
1
+ ## 4.4.2
2
+
3
+ * Fixes ` use_build_context_synchronously ` lint violations in the example app.
4
+
1
5
## 4.4.1
2
6
3
7
* Exposes ` JavaScriptLogLevel ` from platform interface.
Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ Page resource error:
217
217
return FloatingActionButton (
218
218
onPressed: () async {
219
219
final String ? url = await _controller.currentUrl ();
220
- if (context. mounted) {
220
+ if (mounted) {
221
221
ScaffoldMessenger .of (context).showSnackBar (
222
222
SnackBar (content: Text ('Favorited $url ' )),
223
223
);
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: webview_flutter
2
2
description : A Flutter plugin that provides a WebView widget on Android and iOS.
3
3
repository : https://github.com/flutter/packages/tree/main/packages/webview_flutter/webview_flutter
4
4
issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+webview%22
5
- version : 4.4.1
5
+ version : 4.4.2
6
6
7
7
environment :
8
8
sdk : " >=2.19.0 <4.0.0"
Original file line number Diff line number Diff line change
1
+ ## 3.12.1
2
+
3
+ * Fixes ` use_build_context_synchronously ` lint violations in the example app.
4
+
1
5
## 3.12.0
2
6
3
7
* Adds support for ` PlatformWebViewController.getUserAgent ` .
Original file line number Diff line number Diff line change @@ -210,7 +210,7 @@ Page resource error:
210
210
return FloatingActionButton (
211
211
onPressed: () async {
212
212
final String ? url = await _controller.currentUrl ();
213
- if (context. mounted) {
213
+ if (mounted) {
214
214
ScaffoldMessenger .of (context).showSnackBar (
215
215
SnackBar (content: Text ('Favorited $url ' )),
216
216
);
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: webview_flutter_android
2
2
description : A Flutter plugin that provides a WebView widget on Android.
3
3
repository : https://github.com/flutter/packages/tree/main/packages/webview_flutter/webview_flutter_android
4
4
issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+webview%22
5
- version : 3.12.0
5
+ version : 3.12.1
6
6
7
7
environment :
8
8
sdk : " >=2.19.0 <4.0.0"
Original file line number Diff line number Diff line change
1
+ ## 3.9.3
2
+
3
+ * Fixes ` use_build_context_synchronously ` lint violations in the example app.
4
+
1
5
## 3.9.2
2
6
3
7
* Fixes error caused by calling ` WKWebViewConfiguration.limitsNavigationsToAppBoundDomains ` on
Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ Page resource error:
211
211
return FloatingActionButton (
212
212
onPressed: () async {
213
213
final String ? url = await _controller.currentUrl ();
214
- if (context. mounted) {
214
+ if (mounted) {
215
215
ScaffoldMessenger .of (context).showSnackBar (
216
216
SnackBar (content: Text ('Favorited $url ' )),
217
217
);
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: webview_flutter_wkwebview
2
2
description : A Flutter plugin that provides a WebView widget based on Apple's WKWebView control.
3
3
repository : https://github.com/flutter/packages/tree/main/packages/webview_flutter/webview_flutter_wkwebview
4
4
issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+webview%22
5
- version : 3.9.2
5
+ version : 3.9.3
6
6
7
7
environment :
8
8
sdk : " >=2.19.0 <4.0.0"
You can’t perform that action at this time.
0 commit comments