|
@@ -44,6 +44,8 @@ This document lays out the current public properties and methods for the React N
|
44
|
44
|
- [`html`](Reference.md#html)
|
45
|
45
|
- [`hideKeyboardAccessoryView`](Reference.md#hidekeyboardaccessoryview)
|
46
|
46
|
- [`allowsBackForwardNavigationGestures`](Reference.md#allowsbackforwardnavigationgestures)
|
|
47
|
+- [`allowFileAccess`](Reference.md#allowFileAccess)
|
|
48
|
+- [`saveFormDataDisabled`](Reference.md#saveFormDataDisabled)
|
47
|
49
|
|
48
|
50
|
## Methods Index
|
49
|
51
|
|
|
@@ -495,6 +497,21 @@ If true, this will be able horizontal swipe gestures when using the WKWebView. T
|
495
|
497
|
| ------- | -------- | -------- |
|
496
|
498
|
| boolean | No | iOS |
|
497
|
499
|
|
|
500
|
+### `allowFileAccess`
|
|
501
|
+
|
|
502
|
+If true, this will allow access to the file system via `file://` URI's. The default value is `false`.
|
|
503
|
+
|
|
504
|
+| Type | Required | Platform |
|
|
505
|
+| ------- | -------- | -------- |
|
|
506
|
+| boolean | No | Android |
|
|
507
|
+
|
|
508
|
+### `saveFormDataDisabled`
|
|
509
|
+
|
|
510
|
+Sets whether the WebView should disable saving form data. The default value is `false`. This function does not have any effect from Android API level 26 onwards as there is an Autofill feature which stores form data.
|
|
511
|
+
|
|
512
|
+| Type | Required | Platform |
|
|
513
|
+| ------- | -------- | -------- |
|
|
514
|
+| boolean | No | Android |
|
498
|
515
|
|
499
|
516
|
## Methods
|
500
|
517
|
|