|
@@ -237,6 +237,7 @@ export interface AndroidNativeWebViewProps extends CommonNativeWebViewProps {
|
237
|
237
|
onContentSizeChange?: (event: WebViewEvent) => void;
|
238
|
238
|
overScrollMode?: OverScrollModeType;
|
239
|
239
|
saveFormDataDisabled?: boolean;
|
|
240
|
+ textZoom?: number;
|
240
|
241
|
thirdPartyCookiesEnabled?: boolean;
|
241
|
242
|
urlPrefixesForDefaultIntent?: ReadonlyArray<string>;
|
242
|
243
|
}
|
|
@@ -480,6 +481,12 @@ export interface AndroidWebViewProps extends WebViewSharedProps {
|
480
|
481
|
*/
|
481
|
482
|
userAgent?: string;
|
482
|
483
|
|
|
484
|
+ /**
|
|
485
|
+ * Sets number that controls text zoom of the page in percent.
|
|
486
|
+ * @platform android
|
|
487
|
+ */
|
|
488
|
+ textZoom?: number;
|
|
489
|
+
|
483
|
490
|
/**
|
484
|
491
|
* Specifies the mixed content mode. i.e WebView will allow a secure origin to load content from any other origin.
|
485
|
492
|
*
|