ActivityIndicator#hidesWhenStopped

ioshidesWhenStopped bool Whether the indicator should hide when not animating (true by default).

ScrollView#scrollIndicatorInsets

iosscrollIndicatorInsets {top: number, left: number, bottom: number, right: number} The amount by which the scroll view indicators are inset from the edges of the scroll view. This should normally be set to the same value as the contentInset. Defaults to {0, 0, 0, 0}.

ProgressBarAndroid#progress

progress number The progress value (between 0 and 1).

View#onMoveShouldSetResponder

onMoveShouldSetResponder function

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.

RefreshControl#progressViewOffset

androidprogressViewOffset number Progress view top offset

ListView#getMetrics()

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

NavigatorIOS#replaceAtIndex()

replaceAtIndex(route: { component: Function; title: string; passProps?: Object; backButtonTitle?: string; backButtonIcon?: Object; leftButtonTitle?: string; leftButtonIcon?: Object; onLeftButtonPress?: Function; rightButtonTitle?: string; rightButtonIcon?: Object; onRightButtonPress?: Function; wrapperStyle?: any; }, index: number) Replace a route in the navigation stack. index specifies the route in the stack that should be replaced. If it's negative, it counts from the back.

Linking#constructor()

constructor()

Animated.event()

static event(argMapping, config?) Takes an array of mappings and extracts values from each arg accordingly, then calls setValue on the mapped outputs. e.g. onScroll={Animated.event( [{nativeEvent: {contentOffset: {x: this._scrollX}}}] {listener}, // Optional async listener ) ... onPanResponderMove: Animated.event([ null, // raw event arg ignored {dx: this._panX}, // gestureState arg ]),