onBlur function Callback that is called when the text input is blurred
iosonKeyPress function Callback that is called when a key is pressed. Pressed key value is passed as an argument to the callback handler. Fires before onChange callbacks.
onFocus function Callback that is called when the text input is focused
onEndEditing function Callback that is called when text input ends.
onChange function Callback that is called when the text input's text changes.
onChangeText function Callback that is called when the text input's text changes. Changed text is passed as an argument to the callback handler.
maxLength number Limits the maximum number of characters that can be entered. Use this instead of implementing the logic in JS to avoid flicker.
multiline bool If true, the text input can be multiple lines. The default value is false.
androidnumberOfLines number Sets the number of lines for a TextInput. Use it with multiline set to true to be able to fill the lines.
isFocused(): boolean Returns if the input is currently focused.
Page 14 of 64