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

This commit is contained in:
Lewis Nelson 2018-11-19 10:18:49 +00:00 committed by Thibault Malbranche
parent c0c0116c80
commit e83818b08c

View File

@ -44,6 +44,8 @@ This document lays out the current public properties and methods for the React N
- [`html`](Reference.md#html)
- [`hideKeyboardAccessoryView`](Reference.md#hidekeyboardaccessoryview)
- [`allowsBackForwardNavigationGestures`](Reference.md#allowsbackforwardnavigationgestures)
- [`allowFileAccess`](Reference.md#allowFileAccess)
- [`saveFormDataDisabled`](Reference.md#saveFormDataDisabled)
## Methods Index
@ -495,6 +497,21 @@ If true, this will be able horizontal swipe gestures when using the WKWebView. T
| ------- | -------- | -------- |
| boolean | No | iOS |
### `allowFileAccess`
If true, this will allow access to the file system via `file://` URI's. The default value is `false`.
| Type | Required | Platform |
| ------- | -------- | -------- |
| boolean | No | Android |
### `saveFormDataDisabled`
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.
| Type | Required | Platform |
| ------- | -------- | -------- |
| boolean | No | Android |
## Methods