diff --git a/releases/next/docs/scrollview.html b/releases/next/docs/scrollview.html index 1830f3ab682..75140964ada 100644 --- a/releases/next/docs/scrollview.html +++ b/releases/next/docs/scrollview.html @@ -52,7 +52,8 @@ This adds a drop shadow to the item and affects z-order for overlapping views. Only supported on Android 5.0+, has no effect on earlier versions.

androidendFillColor color #

Sometimes a scrollview takes up more space than its content fills. When this is the case, this prop will fill the rest of the scrollview with a color to avoid setting a background and creating unnecessary overdraw. This is an advanced optimization -that is not needed in the general case.

androidscrollPerfTag string #

Tag used to log scroll performance on this scroll view. Will force +that is not needed in the general case.

androidoverScrollMode enum('auto', 'always', 'never') #

Used to override default value of overScroll mode.

Possible values:

androidscrollPerfTag string #

Tag used to log scroll performance on this scroll view. Will force momentum events to be turned on (see sendMomentumEvents). This doesn't do anything out of the box and you need to implement a custom native FpsListener for it to be useful.

iosalwaysBounceHorizontal bool #

When true, the scroll view bounces horizontally when it reaches the end diff --git a/releases/next/docs/textinput.html b/releases/next/docs/textinput.html index a188b547278..cf365bb80b7 100644 --- a/releases/next/docs/textinput.html +++ b/releases/next/docs/textinput.html @@ -100,7 +100,9 @@ Changed text is passed as an argument to the callback handler.

{ nativeEvent: { contentSize: { width, height } } }.

Only called for multiline text inputs.

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}.

onScroll function #

Invoked on content scroll with { nativeEvent: { contentOffset: { x, y } } }. May also contain other properties from ScrollEvent but on Android contentSize -is not provided for performance reasons.

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. +is not provided for performance reasons.

onSelectionChange function #

Callback that is called when the text input selection is changed. +This will be called with +{ nativeEvent: { selection: { start, end } } }.

onSubmitEditing function #

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

placeholder node #

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

placeholderTextColor color #

The text color of the placeholder string.

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.

Cross platform

The following values work across platforms:

  • done
  • go
  • next
  • search
  • send

Android Only

The following values work on Android only:

  • none
  • previous

iOS Only

The following values work on iOS only:

  • default
  • emergency-call
  • google
  • join
  • route
  • yahoo

secureTextEntry bool #

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

selectTextOnFocus bool #

If true, all text will automatically be selected on focus.

selection {start: number, end: number} #

The start and end of the text input's selection. Set start and end to