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
Added a new cacheEnabled prop to toggle Android & iOS webview caching behavior.
BREAKING CHANGE: This change makes caching enabled by default when previously there was no caching behavior which may cause unexpected behaviour changes in your existing implementations.
@@ -360,9 +361,9 @@ Boolean value to enable third party cookies in the `WebView`. Used on Android Lo
360
361
361
362
Sets the user-agent for the `WebView`. This will only work for iOS if you are using WKWebView, not UIWebView (see https://developer.apple.com/documentation/webkit/wkwebview/1414950-customuseragent).
362
363
363
-
| Type | Required | Platform |
364
-
| ------ | -------- | -------- |
365
-
| string | No | Android, iOS WKWebView |
364
+
| Type | Required | Platform |
365
+
| ------ | -------- | ----------------------|
366
+
| string | No | Android, iOS WKWebView |
366
367
367
368
---
368
369
@@ -553,6 +554,16 @@ Sets whether the WebView should disable saving form data. The default value is `
553
554
554
555
---
555
556
557
+
### `cacheEnabled`
558
+
559
+
Sets whether WebView & WKWebView should use browser caching.
560
+
561
+
| Type | Required | Default |
562
+
| ------- | -------- | ------- |
563
+
| boolean | No | true |
564
+
565
+
---
566
+
556
567
### `pagingEnabled`
557
568
558
569
If the value of this property is true, the scroll view stops on multiples of the scroll view’s bounds when the user scrolls. The default value is false.
0 commit comments