LayoutAnimation#Types

Types: CallExpression

Animated#setOffset()

setOffset(offset) Sets an offset that is applied on top of whatever value is set, whether via setValue, an animation, or Animated.event. Useful for compensating things like the start of a pan gesture.

TextInput#placeholder

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

ScrollView#decelerationRate

iosdecelerationRate enum('fast', 'normal'), number A floating-point number that determines how quickly the scroll view decelerates after the user lifts their finger. You may also use string shortcuts "normal" and "fast" which match the underlying iOS settings for UIScrollViewDecelerationRateNormal and UIScrollViewDecelerationRateFast respectively. - normal: 0.998 (the default) - fast: 0.99

LayoutAnimation#spring

spring: CallExpression

ListView#renderSeparator

renderSeparator function (sectionID, rowID, adjacentRowHighlighted) => renderable If provided, a renderable component to be rendered as the separator below each row but not the last row if there is a section header below. Take a sectionID and rowID of the row above and whether its adjacent row is highlighted.

PushNotificationIOS.requestPermissions()

static requestPermissions(permissions?) Requests notification permissions from iOS, prompting the user's dialog box. By default, it will request all notification permissions, but a subset of these can be requested by passing a map of requested permissions. The following permissions are supported: alert badge sound If a map is provided to the method, only the permissions with truthy values will be requested. This method returns a promise that will resolve when the user accepts, rejects, or if

Modal#animated

animated bool Deprecated Use the animationType prop instead.

ListView#getMetrics()

getMetrics() Exports some data, e.g. for perf investigations or analytics.

SliderIOS#minimumTrackImage

minimumTrackImage Image.propTypes.source Assigns a minimum track image. Only static images are supported. The rightmost pixel of the image will be stretched to fill the track.