diff --git a/releases/next/docs/textinput.html b/releases/next/docs/textinput.html index 496fda6067f..d3463595beb 100644 --- a/releases/next/docs/textinput.html +++ b/releases/next/docs/textinput.html @@ -87,9 +87,7 @@ This may cause issues with components that have position: 'absolute' while keyboard is active. To avoid this behavior either specify windowSoftInputMode in AndroidManifest.xml ( https://developer.android.com/guide/topics/manifest/activity-element.html ) or control this param programmatically with native code.

Props #

ViewPropTypes props... #

autoCapitalize?: enum('none', 'sentences', 'words', 'characters') #

Can tell TextInput to automatically capitalize certain characters.

  • characters: all characters.
  • words: first letter of each word.
  • sentences: first letter of each sentence (default).
  • none: don't auto capitalize anything.

autoCorrect?: bool #

If false, disables auto-correct. The default value is true.

autoFocus?: bool #

If true, focuses the input on componentDidMount. -The default value is false.

autoGrow?: bool #

If true, will increase the height of the textbox if need be. If false, -the textbox will become scrollable once the height is reached. The -default value is false.

blurOnSubmit?: bool #

If true, the text field will blur when submitted. +The default value is false.

blurOnSubmit?: bool #

If true, the text field will blur when submitted. The default value is true for single-line fields and false for multiline fields. Note that for multiline fields, setting blurOnSubmit to true means that pressing return will blur the field and trigger the @@ -117,7 +115,9 @@ value prop if provided. For most uses, this works great, but in some cases this may cause flickering - one common cause is preventing edits by keeping value the same. In addition to simply setting the same value, either set editable={false}, or set/update maxLength to prevent -unwanted edits without flicker.

androiddisableFullscreenUI?: bool #

When false, if there is a small amount of space available around a text input +unwanted edits without flicker.

androidautoGrow?: bool #

If true, will increase the height of the textbox if need be. If false, +the textbox will become scrollable once the height is reached. The +default value is false.

androiddisableFullscreenUI?: bool #

When false, if there is a small amount of space available around a text input (e.g. landscape orientation on a phone), the OS may choose to have the user edit the text inside of a full screen text input mode. When true, this feature is disabled and users will always edit the text directly inside of the text input.