File tree 3 files changed +8
-2
lines changed
packages/webview_flutter/webview_flutter_android 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## 3.4.0
2
+
3
+ * Adds support to set text zoom of a page. See ` AndroidWebViewController.setTextZoom ` .
4
+
1
5
## 3.3.2
2
6
3
7
* Updates compileSdkVersion to 33.
Original file line number Diff line number Diff line change @@ -355,7 +355,9 @@ class AndroidWebViewController extends PlatformWebViewController {
355
355
return _webView.settings.setMediaPlaybackRequiresUserGesture (require);
356
356
}
357
357
358
- /// Sets the text zoom of the page in percent. The default is 100.
358
+ /// Sets the text zoom of the page in percent.
359
+ ///
360
+ /// The default is 100.
359
361
Future <void > setTextZoom (int textZoom) =>
360
362
_webView.settings.setTextZoom (textZoom);
361
363
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.3.2
5
+ version : 3.4.0
6
6
7
7
environment :
8
8
sdk : " >=2.17.0 <3.0.0"
You can’t perform that action at this time.
0 commit comments