Parcourir la source

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

Lewis Nelson il y a 5 ans
Parent
révision
e83818b08c
1 fichiers modifiés avec 17 ajouts et 0 suppressions
  1. 17
    0
      docs/Reference.md

+ 17
- 0
docs/Reference.md Voir le fichier

@@ -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