Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added documentation for scrollEnabled property on TextInput #367

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions website/versioned_docs/version-0.55/textinput.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ Note that on Android performing text selection in input can change app's activit
- [`placeholderTextColor`](textinput.md#placeholdertextcolor)
- [`returnKeyLabel`](textinput.md#returnkeylabel)
- [`returnKeyType`](textinput.md#returnkeytype)
- [`scrollEnabled`](textinput.md#scrollenabled)
- [`secureTextEntry`](textinput.md#securetextentry)
- [`selection`](textinput.md#selection)
- [`selectionColor`](textinput.md#selectioncolor)
Expand Down Expand Up @@ -592,6 +593,16 @@ The following values work on iOS only:

---

### `scrollEnabled`

If `false`, scrolling of the text view will be disabled. The default value is `true`. Does only work with 'multiline={true}'.

| Type | Required | Platform |
| ---- | -------- | -------- |
| bool | No | iOS |

---

### `secureTextEntry`

If `true`, the text input obscures the text entered so that sensitive text like passwords stay secure. The default value is `false`. Does not work with 'multiline={true}'.
Expand Down