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/lib/webview_flutter.dart
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -393,22 +393,22 @@ class WebView extends StatefulWidget {
393
393
/// By default `userAgent` is null.
394
394
finalString userAgent;
395
395
396
-
/// Sets whether the WebView should support zooming using its on-screen zoom controls and gestures.
396
+
/// (Android only) Sets whether the WebView should support zooming using its on-screen zoom controls and gestures.
397
397
///
398
398
/// The particular zoom mechanisms that should be used can be set with setBuiltInZoomControls(boolean).
399
399
finalbool setSupportZoom;
400
400
401
-
///Sets whether the WebView should use its built-in zoom mechanisms.
401
+
/// (Android only) Sets whether the WebView should use its built-in zoom mechanisms.
402
402
///
403
403
///The built-in zoom mechanisms comprise on-screen zoom controls, which are displayed over the WebView's content, and the use of a pinch gesture to control zooming.
404
404
finalbool setBuiltInZoomControls;
405
405
406
-
///Sets whether the WebView should use its built-in zoom mechanisms.
406
+
/// (Android only) Sets whether the WebView should use its built-in zoom mechanisms.
407
407
///
408
408
///The built-in zoom mechanisms comprise on-screen zoom controls, which are displayed over the WebView's content, and the use of a pinch gesture to control zooming.
409
409
finalbool setDisplayZoomControls;
410
410
411
-
/// Sets whether the WebView should enable support for the "viewport" HTML meta tag or should use a wide viewport.
411
+
/// (Android only) Sets whether the WebView should enable support for the "viewport" HTML meta tag or should use a wide viewport.
412
412
///
413
413
/// When the value of the setting is false, the layout width is always set to the width of the WebView control in device-independent (CSS) pixels.
414
414
///
@@ -417,7 +417,7 @@ class WebView extends StatefulWidget {
417
417
/// If the page does not contain the tag or does not provide a width, then a wide viewport will be used.
418
418
finalbool setUseWideViewPort;
419
419
420
-
/// Sets whether the WebView loads pages in overview mode, that is, zooms out the content to fit on screen by width.
420
+
/// (Android only) Sets whether the WebView loads pages in overview mode, that is, zooms out the content to fit on screen by width.
421
421
///
422
422
/// This setting is taken into account when the content width is greater than the width of the WebView control, for example, when getUseWideViewPort() is enabled.
0 commit comments