TextInput#selectionColor

selectionColor string The highlight (and cursor on ios) color of the text input

TextInput#style

style Text#style Styles

TextInput#returnKeyLabel

androidreturnKeyLabel string Sets the return key to the label. Use it instead of returnKeyType.

TextInput#secureTextEntry

secureTextEntry bool If true, the text input obscures the text entered so that sensitive text like passwords stay secure. The default value is false.

TextInput#placeholder

placeholder string The string that will be rendered before text input has been entered

TextInput#placeholderTextColor

placeholderTextColor string The text color of the placeholder string

TextInput#returnKeyType

returnKeyType enum('done', 'go', 'next', 'search', 'send', 'none', 'previous', 'default', 'emergency-call', 'google', 'join', 'route', 'yahoo') Determines how the return key should look. On Android you can also use returnKeyLabel. The following values work across platforms: done go next search send The following values work on Android only: none previous The following values work on iOS only: default emergency-call google join route yahoo

TextInput#onSubmitEditing

onSubmitEditing function Callback that is called when the text input's submit button is pressed. Invalid if multiline={true} is specified.

TextInput#onSelectionChange

onSelectionChange function Callback that is called when the text input selection is changed

TextInput#onLayout

onLayout function Invoked on mount and layout changes with {x, y, width, height}.