Skip to content
Open
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
2 changes: 1 addition & 1 deletion docs/textinput.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default TextInputExample;

Two methods exposed via the native element are `.focus()` and `.blur()` that will focus or blur the TextInput programmatically.

Note that some props are only available with `multiline={true/false}`. Additionally, border styles that apply to only one side of the element (e.g., `borderBottomColor`, `borderLeftWidth`, etc.) will not be applied if `multiline=true`. To achieve the same effect, you can wrap your `TextInput` in a `View`:
Note that some props are only available with `multiline={true/false}`:

```SnackPlayer name=Multiline%20TextInput%20Example
import {useState} from 'react';
Expand Down