|
@@ -498,13 +498,6 @@ export interface AndroidWebViewProps extends WebViewSharedProps {
|
498
|
498
|
*/
|
499
|
499
|
urlPrefixesForDefaultIntent?: ReadonlyArray<string>;
|
500
|
500
|
|
501
|
|
- /**
|
502
|
|
- * Boolean value to enable JavaScript in the `WebView`. Used on Android only
|
503
|
|
- * as JavaScript is enabled by default on iOS. The default value is `true`.
|
504
|
|
- * @platform android
|
505
|
|
- */
|
506
|
|
- javaScriptEnabled?: boolean;
|
507
|
|
-
|
508
|
501
|
/**
|
509
|
502
|
* Boolean value to disable Hardware Acceleration in the `WebView`. Used on Android only
|
510
|
503
|
* as Hardware Acceleration is a feature only for Android. The default value is `false`.
|
|
@@ -563,6 +556,13 @@ export interface WebViewSharedProps extends ViewProps {
|
563
|
556
|
*/
|
564
|
557
|
source?: WebViewSource;
|
565
|
558
|
|
|
559
|
+ /**
|
|
560
|
+ * Boolean value to enable JavaScript in the `WebView`. Used on Android only
|
|
561
|
+ * as JavaScript is enabled by default on iOS. The default value is `true`.
|
|
562
|
+ * @platform android
|
|
563
|
+ */
|
|
564
|
+ javaScriptEnabled?: boolean;
|
|
565
|
+
|
566
|
566
|
/**
|
567
|
567
|
* Function that returns a view to show if there's an error.
|
568
|
568
|
*/
|