Skip to content

Commit

Permalink
Added enterKeyHint prop to textInput docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Daksh Bhardwaj committed Sep 6, 2022
1 parent 2673033 commit 994f63b
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions docs/textinput.md
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,32 @@ If `true`, the keyboard disables the return key when there is no text and automa

---

### `enterKeyHint`

Determines what text should be shown to the return key. Has precedence over the `returnKeyType`

_Cross platform_

The following values work across platforms:

- `enter`
- `done`
- `next`
- `search`
- `send`

_Android Only_

The following values work on Android only:

- `previous`

| Type |
| ----------------------------------------------------------- |
| enum('enter', 'done', 'next', 'previous', 'search', 'send') |

---

### `importantForAutofill` <div class="label android">Android</div>

Tells the operating system whether the individual fields in your app should be included in a view structure for autofill purposes on Android API Level 26+. Possible values are `auto`, `no`, `noExcludeDescendants`, `yes`, and `yesExcludeDescendants`. The default value is `auto`.
Expand Down

0 comments on commit 994f63b

Please sign in to comment.