From 6a2a13877ccf1e55cd44360fd968784dc3904eb7 Mon Sep 17 00:00:00 2001 From: Travis CI Date: Thu, 4 Feb 2016 13:21:30 +0000 Subject: [PATCH] update website --- docs/textinput.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/textinput.html b/docs/textinput.html index 75e0e02939f..21025080990 100644 --- a/docs/textinput.html +++ b/docs/textinput.html @@ -19,7 +19,7 @@ instead of implementing the logic in JS to avoid flicker.

onBlur function #

Callback that is called when the text input is blurred

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.

onEndEditing function #

Callback that is called when text input ends.

onFocus function #

Callback that is called when the text input is focused

onLayout function #

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

onSelectionChange function #

Callback that is called when the text input selection is changed

onSubmitEditing function #

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

placeholder string #

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

placeholderTextColor string #

The text color of the placeholder string

secureTextEntry bool #

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

selectionColor string #

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

style Text#style #

Styles

testID string #

Used to locate this view in end-to-end tests

value string #

The value to show for the text input. TextInput is a controlled +like passwords stay secure. The default value is false.

selectionColor string #

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

style Text#style #

Styles

value string #

The value to show for the text input. TextInput is a controlled component, which means the native value will be forced to match this value prop if provided. For most uses this works great, but in some cases this may cause flickering - one common cause is preventing edits