Browse Source

chore(docs):Add docs for missing props which do something (#132)

Lewis Nelson 5 years ago
parent
commit
e83818b08c
1 changed files with 17 additions and 0 deletions
  1. 17
    0
      docs/Reference.md

+ 17
- 0
docs/Reference.md View File

44
 - [`html`](Reference.md#html)
44
 - [`html`](Reference.md#html)
45
 - [`hideKeyboardAccessoryView`](Reference.md#hidekeyboardaccessoryview)
45
 - [`hideKeyboardAccessoryView`](Reference.md#hidekeyboardaccessoryview)
46
 - [`allowsBackForwardNavigationGestures`](Reference.md#allowsbackforwardnavigationgestures)
46
 - [`allowsBackForwardNavigationGestures`](Reference.md#allowsbackforwardnavigationgestures)
47
+- [`allowFileAccess`](Reference.md#allowFileAccess)
48
+- [`saveFormDataDisabled`](Reference.md#saveFormDataDisabled)
47
 
49
 
48
 ## Methods Index
50
 ## Methods Index
49
 
51
 
495
 | ------- | -------- | -------- |
497
 | ------- | -------- | -------- |
496
 | boolean | No       | iOS      |
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
 ## Methods
516
 ## Methods
500
 
517